1

我总是收到这个错误:12-15 09:46:48.434: E/TelephonyManager(5127): getDefaultSim is sim1

当我打电话时:

TelephonyManager mTelephonyMgr = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE);

if( mTelephonyMgr != null && mTelephonyMgr.getDeviceId() != null )
      deviceImei = mTelephonyMgr.getDeviceId();
if (mTelephonyMgr != null && mTelephonyMgr.getSimState() == TelephonyManager.SIM_STATE_READY)
country = mTelephonyMgr.getSimCountryIso();
4

1 回答 1

-1

有3个不同的类别...

1) Features supported and documented

2) Features available and un-documented

3) Features unavailable

因此双 sim 卡功能可用但未记录在案,因此未得到官方支持。

话虽如此,这并不意味着它不能使用,它只是意味着 android(或就此而言 google 甚至制造商)不负责支持您的应用程序功能。

但它可能只是工作,例如。联系人是类似的东西。

然后您可能会问,如果没有记录,每个人都如何知道这些功能。嘿,android 是开源的 .. 去查看代码并自己找到它。这就是我猜多 sim 开发人员所做的。

于 2012-12-15T09:14:49.920 回答