首页 > 系统 > Android > 正文

android实现关闭或开启移动网络数据

2020-04-11 12:08:20
字体:
来源:转载
供稿:网友
如下所示:
复制代码 代码如下:

//android关闭或开启移动网络数据(关闭后,设备不可以上网,但可以打电话和发短信) 
     public void setMobileDataEnabled(boolean enabled)
     {
        ConnectivityManager cm = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
        cm.setMobileDataEnabled(enabled);
     }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表