getting list of languages supported by android keyboard

后端 未结 1 1471
猫巷女王i
猫巷女王i 2020-12-18 04:53

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

相关标签:
1条回答
  • 2020-12-18 05:20

    How about using Locale.getDisplayName(Locale) on each Locale you get with Locale.getAvailableLocales();?

    Returns this locale's language name, country name, and variant, localized to locale.

    new Locale("en").getDisplayName(Locale.US) -> English

    0 讨论(0)
提交回复
热议问题