In the onCreate on the Application class of my app I have this code
Locale current = getResources().getConfiguration().locale;
String language = Utils.getPhoneLanguage();
String text = getString(R.string.text);
I've set the phone language to german and
current is de_DE
language is de
And text is the string from values/strings.xml instead of values-de/strings.xml.
What can be the problem?