Welcome

首页 / 移动开发 / Android / android实现关闭或开启移动网络数据

如下所示:
复制代码 代码如下:
//android关闭或开启移动网络数据(关闭后,设备不可以上网,但可以打电话和发短信) 
     public void setMobileDataEnabled(boolean enabled)
     {
        ConnectivityManager cm = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
        cm.setMobileDataEnabled(enabled);
     }