android实现关闭或开启移动网络数据
发布时间:2016-12-28 来源:查字典编辑
摘要:如下所示:复制代码代码如下://android关闭或开启移动网络数据(关闭后,设备不可以上网,但可以打电话和发短信)publicvoidse...
如下所示:
复制代码 代码如下:
//android关闭或开启移动网络数据(关闭后,设备不可以上网,但可以打电话和发短信)
public void setMobileDataEnabled(boolean enabled)
{
ConnectivityManager cm = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
cm.setMobileDataEnabled(enabled);
}