我目前正在考虑做这样的事情:
TelephonyManager teleMgr = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
if (teleMgr != null)
{
String countryISOCode = teleMgr.getSimCountryIso();
...
但我不知道是否所有国家都遵守这个和 getSimCountryIso(); 功能适用于所有手机。这是可靠的 100% 还是 99% ......或者是另一种方式来告诉用户从哪里更可靠?
谢谢!