How to get application language and device language separately in android?
This is the correct answer: getResources().getConfiguration().locale
Get system language
Resources.getSystem().getConfiguration().locale.getLanguage();
Get app language
String currentLang = Locale.getDefault().getLanguage();