我正在创建一个具有检索运营商设置(特别是国家/地区)功能的应用。我注意到,Android模拟器的用户名是“我们” iSoCountry
,而carrierName
是T-Mobile
。
我已使用以下代码检索了值:
TelephonyManager telephonyManager = (TelephonyManager);
this.getSystemService(Context.TELEPHONY_SERVICE);
String countryCode = telephonyManager.getSimCountryIso();
是否可以将设置从其他国家/地区更改为其他网络?