Android get device locale

后端 未结 7 2442
滥情空心
滥情空心 2020-11-30 00:32

Upon installation of my Android program I check for device locale:

String deviceLocale=Locale.getDefault().getLanguage();

If deviceLocale i

7条回答
  •  不知归路
    2020-11-30 00:59

    you should use String deviceLocale= Locale.getDefault().getDisplayLanguage(); to display the language instead of

    String deviceLocale=Locale.getDefault().getLanguage();
    

    check out this answer it may help you if above does not. Clickable

提交回复
热议问题