通过使用下面的这种方法,我正在获得SIM卡的信息

 TelephonyManager telephonyManager = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE);
            // Get the SIM country ISO code
            String simCountry = telephonyManager.getSimCountryIso();
            Log.e("Show:", simCountry);
            // Get the operator code of the active SIM (MCC + MNC)
            String simOperatorCode = telephonyManager.getSimOperator();
            Log.e("Show:", simOperatorCode);
            // Get the name of the SIM operator
            String simOperatorName = telephonyManager.getSimOperatorName();
            Log.e("Show:", simOperatorName);
            // Get the SIM’s serial number
            String simSerial = telephonyManager.getSimSerialNumber();
            Log.e("Show:", simSerial);
            // Get the phone number
            String mPhoneNumber = telephonyManager.getLine1Number();
            Log.e("Show:", mPhoneNumber);

如何获取双卡双待的信息?
            // Get the phone number
            String mPhoneNumber = telephonyManager.getLine1Number();
            Log.e("Show:", mPhoneNumber);

在某些设备上工作

允许:
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

所以我该怎么做?有任何错误吗?

最佳答案

从Android API 22可以使用SubscriptionMananger
你只需要打电话
SubscriptionManager.from(context).getActiveSubscriptionInfo(1)
获取有关第二张SIM卡的信息

关于android - 如何在Android中获取第二张SIM卡的信息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33498927/

10-12 00:12