Upon installation of my Android program I check for device locale:
String deviceLocale=Locale.getDefault().getLanguage();
If deviceLocale i
you should use String deviceLocale= Locale.getDefault().getDisplayLanguage(); to display the language instead of
String deviceLocale= Locale.getDefault().getDisplayLanguage();
check out this answer it may help you if above does not. Clickable