Here's a sample code:
toastMessage = "Data added successfully";
...
Toast.makeText(this, toastMessage, Toast.LENGTH_SHORT).show();
In this way, users only can interact with the English
language
, What can I do, if I wanted to show messages like above to user base on their language preferences (e.g. German or France) in android
.
Thanks.