I know that to support different language I have to add the res/values-el
for example.
And I can't change by that all the buttons, TextViews etc.
But, if my app uses for example an AlertDialog, can I change the language of the title etc?
...
AlertDialog.Builder alt_bld = new AlertDialog.Builder(this);
alt_bld.setMessage("Do you want to navigate to the saved position?")
.setCancelable(false)
.setPositiveButton("Navigate",
alert.setTitle("Navigation");
...
Ok, if anyone wants to do that from a service he must use :
mContext.getString(R.string.Title) //where mContext is the Context
instead of
getResources().getString(R.string.Title)