Android 通过代码实现控制数据网络的开关(仅适用于5.0以上)

Android 5.0以前使用ConnectivityManager通过反射两个方法setMobileDataEnabled和getMobileDataEnabled来控制移动网络开和关。 
Android 5.0以后使用TelephonyMananger类通过反射获取setDataEnabled和getDataEnabled类完成操作。 
注意:需要使用系统权限:android:sharedUserId=”android.uid.system”。系统需要root

//适应Android5.0+

public void setMobileDataState(Context context, boolean enabled) {
    TelephonyManager telephonyService = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
    try {
        Method setDataEnabled = telephonyService.getClass().getDeclaredMethod("setDataEnabled",boolean.class);
        if (null != setDataEnabled) {
            setDataEnabled.invoke(telephonyService, enabled);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}



public boolean getMobileDataState(Context context) {
    TelephonyManager telephonyService = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
    try {
        Method getDataEnabled = telephonyService.getClass().getDeclaredMethod("getDataEnabled");
        if (null != getDataEnabled) {
            return (Boolean) getDataEnabled.invoke(telephonyService);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return false;
}

 

/** 别忘了添加权限 **/
 

 

你可能感兴趣的:(Android)