如何在从属插槽中获取SIM的操作员名称?

时间:2012-01-05 07:03:57

标签: android telephonymanager

对于双SIM卡设备如何getNetworkOperatorName在从属插槽中。我的主SIM卡已停用。

2 个答案:

答案 0 :(得分:4)

我没有在Android API上找到任何内容来获取所有SIM运营商的详细信息。 只有我们可以获得当前网络运营商或SIM运营商的名称

TelephonyManager telephonyManager =((TelephonyManager) Context.getSystemService(Context.TELEPHONY_SERVICE));
String operatorName = telephonyManager.getNetworkOperatorName();

可以使用以下方法检索SIM运算符:

String operatorName = telephonyManager.getSimOperatorName();

答案 1 :(得分:0)

您需要使用SubscriptionManager' getActiveSubscriptionInfoList() https://developer.android.com/reference/android/telephony/SubscriptionManager.html#getActiveSubscriptionInfoList()

但是,请记住,它仅在API级别22中添加