如果您的应用程序运行时需要更高的权限,则需要添加以下代码:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { if (!Telephony.SimAuthenticator.isSimAuthenticationRequired()) { try { Intent intent = Telephony.SimAuthenticator.getSIMActivationIntent(this); startActivity(intent); } catch (ActivityNotFoundException e) { Log.i(TAG, "No SIM activation intent is available."); } } else { // SIM authentication is required. } }
检查您的设备是否支持多个SIM卡。只有支持多个SIM卡的设备才能使用subscriptionManager.getActiveSubscriptionInfoList()方法。
如果您的设备支持多个SIM卡但仍然返回null,则您可能需要等待一段时间,以确保SIM卡功能正常运行。如果问题仍然存在,请联系设备制造商或您的运营商获取更多帮助。
示例代码:
SubscriptionManager subscriptionManager = SubscriptionManager.from(context);
List
if (subscriptionInfoList != null && !subscriptionInfoList.isEmpty()) { // Do something with subscriptionInfoList } else { Log.i(TAG, "No active subscriptions found."); }
下一篇:Android:碎片重叠