In my android app I need to know which is the language of the phone in this format :fr (for francais), en (for english),etc.. How can I do this? I know that I can display language with this :

Locale.getDefault().getDisplayLanguage()

but the result is francais,english,...

Can I obtain somehow the initials of languages?

link|improve this question

68% accept rate
Why do you specifically want the initials when you got the complete name? – m0skit0 Aug 23 '11 at 11:20
because I need the to put at a link. For example, if the language is francais the link will be something like this "something/fr, if is english will be "http//www.somthing/en"... – Gabrielle Aug 23 '11 at 11:23
feedback

4 Answers

up vote 5 down vote accepted
Locale.getDefault().getLanguage()

Returns the language code for this Locale or the empty string if no language was set.

http://developer.android.com/reference/java/util/Locale.html#getLanguage()

link|improve this answer
feedback

How about using

Locale.getDefault().getLanguage();
link|improve this answer
This should be correct, but it actually returns "English", "Español", etc, exactly as getDisplayLocale()..... why?!?!?!?! – matteo Jan 5 at 18:03
I cant find any method called "getDisplayLocale() on the class Locale. Which API level or SDK are you using? – mkfinest Jan 9 at 8:09
feedback

Here you go: http://developer.android.com/reference/java/util/Locale.html

link|improve this answer
I found the solution : Locale.getDefault().getLanguage() – Gabrielle Aug 23 '11 at 11:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.