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,812
  • 17
  • 60
  • 96

1 Answers1

3

you can try this

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