Possible Duplicate:
What is the list of supported languages/locales on Android?
In my android application i want to get list of supporting languages by that particular device problematically. Please any one tell me Is their any any way to do this
Possible Duplicate:
What is the list of supported languages/locales on Android?
In my android application i want to get list of supporting languages by that particular device problematically. Please any one tell me Is their any any way to do this
you can try this
Locale[] locs= Locale.getAvailableLocales();
for(Locale l:locs){
Log.d(tag, l.getDisplayLanguage());
}