如何知道哪个SIM卡在双卡Android手机中消耗移动数据?

时间:2017-03-17 08:29:38

标签: android operating-system android-networking internet-connection dual-sim

我正在构建一个网络监控应用程序。在这里,我已成功实现了Wifi或移动数据中的跟踪数据使用等所有内容,但我想知道哪些SIM连接到互联网并使用移动数据。

使用以下代码,我可以知道我的双卡手机是否已连接到Wifi或移动数据。

public static String isInternetConnected (Context ctx) {
    ConnectivityManager connectivityMgr = (ConnectivityManager) ctx
            .getSystemService(CONNECTIVITY_SERVICE);
    NetworkInfo wifi = connectivityMgr.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
    NetworkInfo mobile = connectivityMgr.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);
    // Check if wifi or mobile network is available or not. If any of them is
    // available or connected then it will return true, otherwise false;
    if (wifi != null) {
        if (wifi.isConnected()) {
            return "wifi";
        }
    }
    if (mobile != null) {
        if (mobile.isConnected()) {
            return "mobile";
        }
    }
    return "none";
}

如何在双卡安卓手机中获取消耗移动数据的SIM索引或SIM卡操作员名称?

我搜索了很多,我看到很多问题在SO中发布,没有像this这样的答案。

我能够在双SIM卡手机中获得两个SIM卡的subId,但我正在逐步解决问题,以了解哪个SIM卡正在使用互联网。

许多其他应用程序都可以像Mubble那样执行此操作。

任何人都可以为我提供解决方案吗?

1 个答案:

答案 0 :(得分:0)

在api级别22之后,您可以通过反射使用hidden system api android.telephony.SubscriptionManager#getDefaultDataSubId来获取当前的活动数据sim订阅索引。

在api级别24之后,有一个公共系统api android.telephony.SubscriptionManager#getDefaultDataSubscriptionId用于获取当前的活动数据sim订阅索引。

然后,您可以从订阅索引创建android.telephony.TelephonyManagerandroid.telephony.SubscriptionManager#getActiveSubscriptionInfo以获得sim运算符信息。

这里是获取双SIM卡数据SIM卡操作员的简单解决方案。

    public static String getDataSimOperator(Context context) {
        if (context == null) {
            return null;
        }

        TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
        if (tm != null) {
            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP_MR1) {
                if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
                    int dataSubId = SubscriptionManager.getDefaultDataSubscriptionId();
                    TelephonyManager dataSimManager = tm.createForSubscriptionId(dataSubId);
                    return dataSimManager.getSimOperator();
                } else {
                    String operator = getDataSimOperatorBeforeN(context);
                    if (operator != null) {
                        return operator;
                    } else {
                        return tm.getSimOperator();
                    }
                }
            } else {
                return tm.getSimOperator();
            }
        }
        return null;
    }

    @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP_MR1)
    private static String getDataSimOperatorBeforeN(Context context) {
        if (context == null) {
            return null;
        }

        int dataSubId = -1;
        try {
            Method getDefaultDataSubId = SubscriptionManager.class.getDeclaredMethod("getDefaultDataSubId");
            if (getDefaultDataSubId != null) {
                getDefaultDataSubId.setAccessible(true);
                dataSubId = (int) getDefaultDataSubId.invoke(null);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (dataSubId != -1) {
            SubscriptionManager sm = (SubscriptionManager) context.getSystemService(Context.TELEPHONY_SUBSCRIPTION_SERVICE);
            if (sm != null && ActivityCompat.checkSelfPermission(context, Manifest.permission.READ_PHONE_STATE)
                    == PackageManager.PERMISSION_GRANTED) {
                SubscriptionInfo si = sm.getActiveSubscriptionInfo(dataSubId);
                if (si != null) {
                    // format keep the same with android.telephony.TelephonyManager#getSimOperator
                    // MCC + MNC format
                    return String.valueOf(si.getMcc()) + si.getMnc();
                }
            }
        }
        return null;
    }