Upon installation of my Android program I check for device locale:
String deviceLocale=Locale.getDefault().getLanguage();
If deviceLocale i
To get the device locale use this
Locale current = context.getResources().getConfiguration().locale;
and current.toString() will return you "en" "ar" etc
current.toString()