其他分享
首页 > 其他分享> > android-如何获取印度的国家/地区代码(例如91)?

android-如何获取印度的国家/地区代码(例如91)?

作者:互联网

我曾尝试使用TelephonyManager

TelephonyManager telephonyManager=(TelephonyManager)getBaseContext().
    getSystemService(Context.TELEPHONY_SERVICE);
String CountryIso= telephonyManager.getNetworkCountryIso();
String NetworkIso=telephonyManager.getSimCountryIso();

解决方法:

关于这一点,总是有大量的讨论,而我从来不明白为什么开发商和公司会选择复杂的方式.用户选择的语言表示他/她希望始终在手机中看到的语言.他们不打算使用与其他人或系统不同语言的应用程序.

选择非常简单:使用区域设置(获取用户选择的语言作为首选语言),或尽最大努力让他们生气,以他们已经说过不想看到的语言来显示信息.

要获取国家/地区代码,请使用:

Locale.getDefault().getCountry();

标签:telephonymanager,android
来源: https://codeday.me/bug/20191122/2058603.html