Issue
How can we get the current language selected in the Android device?
Solution
If you want to get the selected language of your device, this might help you:
Locale.getDefault().getDisplayLanguage();
You can use Locale.getDefault().getLanguage();
to get the usual language code (e.g. "de", "en")
Answered By - DeRagan
Answer Checked By - Gilberto Lyons (JavaFixing Admin)