I need to display the list of the all languages which are supported by android keyboard. Now I am using Locale.getAvailableLocales();
method but i am getting language and country constants.
I need all language names only. Is it possible? and how ?.
How about using Locale.getDisplayName(Locale) on each Locale you get with
Locale.getAvailableLocales();
?