当前位置:   article > 正文

实现开启和关闭android移动网络(做AppWidget开发的收获)_android studio 打开 和 关闭 数据流量

android studio 打开 和 关闭 数据流量

本文转载自: http://blog.csdn.net/stevenhu_223

    之前在做Android AppWidget这方面的开发,本人菜鸟一个,刚接触android不久。所以在开发的过程中不免遇到诸多难处,不过在解决问题中收获知识是一种非常刺激的体验。接下来是本人在开发开关android系统移动网络的过程所收获的知识,希望能够帮助有需要的爱好编程者(呵呵..本人是Java语言的忠实粉丝)。

    其实开启和关闭移动数据网络有两种方法:一种是通过操作系统的数据库改变APN(网络接入点),从而实现开启和关闭移动数据网络,另一种是通过反射调用系统(ConnectivityManager)的setMoblieDataEnabled方法,通过操作该方法开启和关闭系统移动数据,同时也可以通过反射调用getMoblieDataEnabled方法获取当前的开启和关闭状态。

 

第一种方式:

   通过APN的方式开启和关闭很威猛啊,为什么这么说呢,废话不多说,先看代码:

   1. 匹配类:

 

  1. //创建一个匹配类,用于匹配移动、电信、联通的APN
  2. public final class APNMatchTools
  3. {
  4. // 中国移动cmwap
  5. public static String CMWAP = "cmwap";
  6. // 中国移动cmnet
  7. public static String CMNET = "cmnet";
  8. // 中国联通3gwap APN
  9. public static String GWAP_3 = "3gwap";
  10. // 中国联通3gnet APN
  11. public static String GNET_3 = "3gnet";
  12. // 中国联通uni wap APN
  13. public static String UNIWAP = "uniwap";
  14. // 中国联通uni net APN
  15. public static String UNINET = "uninet";
  16. // 中国电信 ct wap APN
  17. public static String CTWAP = "ctwap";
  18. // 中国电信ct net APN
  19. public static String CTNET = "ctnet";
  20. public static String matchAPN(String currentName)
  21. {
  22. if ("".equals(currentName) || null == currentName)
  23. {
  24. return "";
  25. }
  26. // 参数转为小写
  27. currentName = currentName.toLowerCase();
  28. // 检查参数是否与各APN匹配,返回匹配值
  29. if (currentName.startsWith(CMNET))
  30. return CMNET;
  31. else if (currentName.startsWith(CMWAP))
  32. return CMWAP;
  33. else if (currentName.startsWith(GNET_3))
  34. return GNET_3;
  35. else if (currentName.startsWith(GWAP_3))
  36. return GWAP_3;
  37. else if (currentName.startsWith(UNINET))
  38. return UNINET;
  39. else if (currentName.startsWith(UNIWAP))
  40. return UNIWAP;
  41. else if (currentName.startsWith(CTWAP))
  42. return CTWAP;
  43. else if (currentName.startsWith(CTNET))
  44. return CTNET;
  45. else if (currentName.startsWith("default"))
  46. return "default";
  47. else
  48. return "";
  49. }
  50. }

2. 开启和关闭APN的方法在ApnSwitchTest类中实现,如下:

  1. import java.util.ArrayList;
  2. import java.util.List;
  3. import android.app.Activity;
  4. import android.content.ContentValues;
  5. import android.database.Cursor;
  6. import android.net.Uri;
  7. import android.util.Log;
  8. public class ApnSwitchTest extends Activity
  9. {
  10. Uri uri = Uri.parse("content://telephony/carriers/preferapn");
  11. // 开启APN
  12. public void openAPN()
  13. {
  14. List<APN> list = getAPNList();
  15. for (APN apn : list)
  16. {
  17. ContentValues cv = new ContentValues();
  18. // 获取及保存移动或联通手机卡的APN网络匹配
  19. cv.put("apn", APNMatchTools.matchAPN(apn.apn));
  20. cv.put("type", APNMatchTools.matchAPN(apn.type));
  21. // 更新系统数据库,改变移动网络状态
  22. getContentResolver().update(uri, cv, "_id=?", new String[]
  23. {
  24. apn.id
  25. });
  26. }
  27. }
  28. // 关闭APN
  29. public void closeAPN()
  30. {
  31. List<APN> list = getAPNList();
  32. for (APN apn : list)
  33. {
  34. // 创建ContentValues保存数据
  35. ContentValues cv = new ContentValues();
  36. // 添加"close"匹配一个错误的APN,关闭网络
  37. cv.put("apn", APNMatchTools.matchAPN(apn.apn) + "close");
  38. cv.put("type", APNMatchTools.matchAPN(apn.type) + "close");
  39. // 更新系统数据库,改变移动网络状态
  40. getContentResolver().update(uri, cv, "_id=?", new String[]
  41. {
  42. apn.id
  43. });
  44. }
  45. }
  46. public static class APN
  47. {
  48. String id;
  49. String apn;
  50. String type;
  51. }
  52. private List<APN> getAPNList()
  53. {
  54. // current不为空表示可以使用的APN
  55. String projection[] =
  56. {
  57. "_id, apn, type, current"
  58. };
  59. // 查询获取系统数据库的内容
  60. Cursor cr = getContentResolver().query(uri, projection, null, null, null);
  61. // 创建一个List集合
  62. List<APN> list = new ArrayList<APN>();
  63. while (cr != null && cr.moveToNext())
  64. {
  65. Log.d("ApnSwitch", "id" + cr.getString(cr.getColumnIndex("_id")) + " \n" + "apn"
  66. + cr.getString(cr.getColumnIndex("apn")) + "\n" + "type"
  67. + cr.getString(cr.getColumnIndex("type")) + "\n" + "current"
  68. + cr.getString(cr.getColumnIndex("current")));
  69. APN a = new APN();
  70. a.id = cr.getString(cr.getColumnIndex("_id"));
  71. a.apn = cr.getString(cr.getColumnIndex("apn"));
  72. a.type = cr.getString(cr.getColumnIndex("type"));
  73. list.add(a);
  74. }
  75. if (cr != null)
  76. cr.close();
  77. return list;
  78. }
  79. }<span style="font-family: 'Comic Sans MS'; "> </span>

  最后,别忘了在AndroidManifext.xml文件中添加访问权限<uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />

  亲们,从上面的代码中看出什么来了么,没错,通过APN的方式就是修改数据库,关闭APN其实就是给它随便匹配一个错误的APN。为什么说这种方法很生猛呢,当你通过这个方式关闭APN后,你在通过手机上的快捷开关开启移动数据网络时,是没效果的,也就是说开启不了,除非你再用同样的方法开启APN。

  这就奇怪了,关闭APN后,为什么再通过手机上的快捷开关(AppWidget)开启不了呢,这个问题就值得思考了,说明快捷开关其实并不是通过这个方式来开启和关闭移动网络的。道理很简单,想想那些快捷开关是怎么样根据开启和关闭移动网络,然后更换亮和暗的图标的呢(更新UI)。这里肯定会涉及到一个获取系统当前开启和关闭移动数据状态的问题。那到底是怎样获取的,是通过什么样的形式的?其实道理很简单,就是通过调用系统的getMoblieDataEnabled和setMoblieDataEnabled我是这么知道它是调用到这个方法的呢?亲们,如果你有android手机,把它插到电脑上,然后开启已经搭建好的android开发环境的eclpise,打开logcat面板,相应地在你手机的快捷开关上开启和关闭移动网络,然后看看在logcat面板上出现什么了)。

  既然知道是调用上面这两个方法了,我们是不是就可以直接调用这个两个方法实现了?NO,没这么简单,这个两个方法不能直接调用,必须通过反射机制调用(呵呵,没接触过java有关反射的知识的,或者是忘了的,可以去学习和温习一下)。

 

第二种方式:

  废话不多说,看下面的代码:

  1. import java.lang.reflect.Field;
  2. import java.lang.reflect.InvocationTargetException;
  3. import java.lang.reflect.Method;
  4. import android.app.Activity;
  5. import android.content.Context;
  6. import android.net.ConnectivityManager;
  7. public class MobileDataSwitchTest extends Activity
  8. {
  9. // 移动数据开启和关闭
  10. public void setMobileDataStatus(Context context,boolean enabled)
  11. {
  12. ConnectivityManager conMgr = (ConnectivityManager)this.getSystemService(Context.CONNECTIVITY_SERVICE);
  13. //ConnectivityManager类
  14. Class<?> conMgrClass = null;
  15. //ConnectivityManager类中的字段
  16. Field iConMgrField = null;
  17. //IConnectivityManager类的引用
  18. Object iConMgr = null;
  19. //IConnectivityManager类
  20. Class<?> iConMgrClass = null;
  21. //setMobileDataEnabled方法
  22. Method setMobileDataEnabledMethod = null;
  23. try
  24. {
  25. //取得ConnectivityManager类
  26. conMgrClass = Class.forName(conMgr.getClass().getName());
  27. //取得ConnectivityManager类中的对象Mservice
  28. iConMgrField = conMgrClass.getDeclaredField("mService");
  29. //设置mService可访问
  30. iConMgrField.setAccessible(true);
  31. //取得mService的实例化类IConnectivityManager
  32. iConMgr = iConMgrField.get(conMgr);
  33. //取得IConnectivityManager类
  34. iConMgrClass = Class.forName(iConMgr.getClass().getName());
  35. //取得IConnectivityManager类中的setMobileDataEnabled(boolean)方法
  36. setMobileDataEnabledMethod = iConMgrClass.getDeclaredMethod("setMobileDataEnabled", Boolean.TYPE);
  37. //设置setMobileDataEnabled方法是否可访问
  38. setMobileDataEnabledMethod.setAccessible(true);
  39. //调用setMobileDataEnabled方法
  40. setMobileDataEnabledMethod.invoke(iConMgr, enabled);
  41. }
  42. catch(ClassNotFoundException e)
  43. {
  44. e.printStackTrace();
  45. }
  46. catch(NoSuchFieldException e)
  47. {
  48. e.printStackTrace();
  49. }
  50. catch(SecurityException e)
  51. {
  52. e.printStackTrace();
  53. }
  54. catch(NoSuchMethodException e)
  55. {
  56. e.printStackTrace();
  57. }
  58. catch(IllegalArgumentException e)
  59. {
  60. e.printStackTrace();
  61. }
  62. catch(IllegalAccessException e)
  63. {
  64. e.printStackTrace();
  65. }
  66. catch(InvocationTargetException e)
  67. {
  68. e.printStackTrace();
  69. }
  70. }
  71. //获取移动数据开关状态
  72. public boolean getMobileDataStatus(String getMobileDataEnabled)
  73. {
  74. ConnectivityManager cm;
  75. cm = (ConnectivityManager)this.getSystemService(Context.CONNECTIVITY_SERVICE);
  76. Class cmClass = cm.getClass();
  77. Class[] argClasses = null;
  78. Object[] argObject = null;
  79. Boolean isOpen = false;
  80. try
  81. {
  82. Method method = cmClass.getMethod(getMobileDataEnabled, argClasses);
  83. isOpen = (Boolean)method.invoke(cm, argObject);
  84. }catch(Exception e)
  85. {
  86. e.printStackTrace();
  87. }
  88. return isOpen;
  89. }
  90. }

最后,别忘了在AndroidMannifest.xml文件里添加访问权限 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />,  <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />

通过上面的代码可以知道,当开启移动网络时调用setMobileDataStatus(context,true),关闭调用setMobileDataStatus(context,false),通过getMobileDataStatus(String getMobileDataEnabled)方法返回的布尔值判断当移动数据网络前状态的开启和关闭。

 

  注:本人第一次发博客,如有不足之处恳请多多谅解,诚心接受大家的批评及采纳大家的意见!大家共同努力学习!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/300934
推荐阅读
相关标签
  

闽ICP备14008679号