1

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

Community
  • 1
  • 1
Krishna
  • 4,892
  • 18
  • 63
  • 98

1 Answers1

3

you can try this

    Locale[] locs= Locale.getAvailableLocales();
    for(Locale l:locs){
        Log.d(tag, l.getDisplayLanguage());
    }
Mohammad Ersan
  • 12,304
  • 8
  • 54
  • 77