检查3g,4g是否连接android

时间:2015-08-23 06:20:50

标签: android connectivity

我使用以下代码检查手机或平板电脑上是否有任何类型的连接。它与WiFi和GPRS工作正常。不幸的是我没有3g访问权限,因此我无法检查此代码是否正常工作。如果有人请你确认一下吗?它对电池寿命有多大影响?

 private  boolean chkConnectivity() {
    boolean isConnected = false;

    ConnectivityManager connManager = (ConnectivityManager) ctx.getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo mWifi = connManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
    android.net.NetworkInfo mobile = connManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);
    if( mobile.isAvailable() && mobile.getDetailedState() == NetworkInfo.DetailedState.CONNECTED ){
        Toast.makeText(ctx, "3g", Toast.LENGTH_SHORT).show();
        return true;
    }
    if (mWifi.isAvailable() && mWifi.getDetailedState() == NetworkInfo.DetailedState.CONNECTED ) {
        Toast.makeText(ctx, "WiFi", Toast.LENGTH_SHORT).show();
        return true;
    }
    try {
        TelephonyManager mgr = (TelephonyManager) ctx.getSystemService(Context.TELEPHONY_SERVICE);
        int networkType = mgr.getNetworkType();
        if (networkType == TelephonyManager.NETWORK_TYPE_GPRS){
            Class cmClass = Class.forName(connManager.getClass().getName());
            Method method = cmClass.getDeclaredMethod("getMobileDataEnabled");
            method.setAccessible(true);
            isConnected = (Boolean)method.invoke(connManager);
            if (isConnected){
                Toast.makeText(ctx, "GPRS", Toast.LENGTH_SHORT).show();
                return isConnected;
            }
        }
        Toast.makeText(ctx, "No connection", Toast.LENGTH_SHORT).show();
        return isConnected;

    } catch (Exception e) {
        return false;
    }

}

1 个答案:

答案 0 :(得分:2)

抱歉,我迟到了。

这就是你的应用运行的方式。没问题。

没有数据

Image2

有了数据 enter image description here