首页 > 系统 > Android > 正文

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

2019-10-24 20:45:43
字体:
来源:转载
供稿:网友
本篇文章是对android实现关闭或开启移动网络数据进行了详细的分析介绍,需要的朋友参考下
 
如下所示:
复制代码代码如下:

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表