Android WiFi管理(WIFI_SERVICE)

分类: Android2011-11-24 10:52 2000人阅读 评论(1) 收藏 举报

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.entel.research"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk android:minSdkVersion="7" />
  7. <application
  8. android:icon="@drawable/ic_launcher"
  9. android:label="@string/app_name" android:debuggable="true">
  10. <activity
  11. android:label="@string/app_name"
  12. android:name=".WifiManagerActivity" >
  13. <intent-filter >
  14. <action android:name="android.intent.action.MAIN" />
  15. <category android:name="android.intent.category.LAUNCHER" />
  16. </intent-filter>
  17. </activity>
  18. </application>
  19. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  20. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
  21. <uses-permission android:name="android.permission.WAKE_LOCK" />
  22. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  23. </manifest>
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <TextView
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:text="@string/hello" />
  10. <Button
  11. android:id="@+id/wifiManager_open"
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:text="打开WiFi" />
  15. <Button
  16. android:id="@+id/wifiManager_close"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:text="关闭WiFi" />
  20. <Button
  21. android:id="@+id/wifiManager_check"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:text="显示WiFi状态" />
  25. <Button
  26. android:id="@+id/wifiManager_WIFI_SETTINGS"
  27. android:layout_width="fill_parent"
  28. android:layout_height="wrap_content"
  29. android:text="WiFi网络设置" />
  30. <Button
  31. android:id="@+id/threeGManager_State"
  32. android:layout_width="fill_parent"
  33. android:layout_height="wrap_content"
  34. android:text="显示3G边境状态" />
  35. <Button
  36. android:id="@+id/wifiManager_WIRELESS_SETTINGS"
  37. android:layout_width="fill_parent"
  38. android:layout_height="wrap_content"
  39. android:text="无线网络配置" />
  40. </LinearLayout>
  1. package com.entel.research;
  2. import android.app.Activity;
  3. import android.content.Context;
  4. import android.content.Intent;
  5. import android.net.ConnectivityManager;
  6. import android.net.NetworkInfo.State;
  7. import android.net.wifi.WifiManager;
  8. import android.os.Bundle;
  9. import android.provider.Settings;
  10. import android.view.View;
  11. import android.view.View.OnClickListener;
  12. import android.widget.Button;
  13. import android.widget.Toast;
  14. public class WifiManagerActivity extends Activity
  15. {
  16. @Override
  17. public void onCreate(Bundle savedInstanceState)
  18. {
  19. super.onCreate(savedInstanceState);
  20. setContentView(R.layout.main);
  21. Button wifiManager_open = (Button) findViewById(R.id.wifiManager_open);
  22. Button wifiManager_close = (Button) findViewById(R.id.wifiManager_close);
  23. Button wifiManager_check = (Button) findViewById(R.id.wifiManager_check);
  24. Button wifiManager_WIFI_SETTINGS = (Button) findViewById(R.id.wifiManager_WIFI_SETTINGS);
  25. Button wifiManager_WIRELESS_SETTINGS = (Button) findViewById(R.id.wifiManager_WIRELESS_SETTINGS);
  26. Button threeGManager_State = (Button) findViewById(R.id.threeGManager_State);
  27. final WifiManager wifiManager = (WifiManager) WifiManagerActivity.this
  28. .getSystemService(Context.WIFI_SERVICE);
  29. final ConnectivityManager conMan = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
  30. wifiManager_open.setOnClickListener(new OnClickListener()
  31. {
  32. public void onClick(View v)
  33. {
  34. wifiManager.setWifiEnabled(true);
  35. Toast.makeText(WifiManagerActivity.this, "Wifi开启",
  36. Toast.LENGTH_SHORT).show();
  37. }
  38. });
  39. wifiManager_close.setOnClickListener(new OnClickListener()
  40. {
  41. public void onClick(View v)
  42. {
  43. if (wifiManager.isWifiEnabled())
  44. {
  45. wifiManager.setWifiEnabled(false);
  46. Toast.makeText(WifiManagerActivity.this, "Wifi关闭",
  47. Toast.LENGTH_SHORT).show();
  48. }
  49. Toast.makeText(WifiManagerActivity.this, "Wifi关闭",
  50. Toast.LENGTH_SHORT).show();
  51. }
  52. });
  53. wifiManager_check.setOnClickListener(new OnClickListener()
  54. {
  55. public void onClick(View v)
  56. {
  57. String result = null;
  58. switch (wifiManager.getWifiState())
  59. {
  60. case WifiManager.WIFI_STATE_DISABLED:
  61. result = "WIFI已关闭";
  62. break;
  63. case WifiManager.WIFI_STATE_DISABLING:
  64. result = "WIFI正在关闭中";
  65. break;
  66. case WifiManager.WIFI_STATE_ENABLED:
  67. result = "WIFI已启用";
  68. break;
  69. case WifiManager.WIFI_STATE_ENABLING:
  70. result = "WIFI正在启动中";
  71. break;
  72. case WifiManager.WIFI_STATE_UNKNOWN:
  73. result = "未知WIFI状态";
  74. break;
  75. }
  76. Toast.makeText(WifiManagerActivity.this, result, Toast.LENGTH_SHORT)
  77. .show();
  78. }
  79. });
  80. wifiManager_WIFI_SETTINGS.setOnClickListener(new OnClickListener()
  81. {
  82. public void onClick(View v)
  83. {
  84. startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS));
  85. }
  86. });
  87. threeGManager_State.setOnClickListener(new OnClickListener()
  88. {
  89. public void onClick(View v)
  90. {
  91. State mobile = conMan.getNetworkInfo(
  92. ConnectivityManager.TYPE_MOBILE).getState();
  93. Toast.makeText(WifiManagerActivity.this, mobile.toString(),
  94. Toast.LENGTH_SHORT).show();
  95. }
  96. });
  97. wifiManager_WIRELESS_SETTINGS.setOnClickListener(new OnClickListener()
  98. {
  99. public void onClick(View v)
  100. {
  101. startActivity(new Intent(Settings.ACTION_WIRELESS_SETTINGS));
  102. }
  103. });
  104. }
  105. }

版权声明:本文为博主原创文章,未经博主允许不得转载。

http://blog.csdn.net/sbvfhp/article/details/7007090
http://www.2cto.com/kf/201111/112219.html

Android WiFi管理(WIFI_SERVICE)的更多相关文章

  1. Android wifi管理类:WifiAdmin

    1.wifi的五种状态: WIFI_STATE_DISABLED   WIFI网卡不可用 WIFI_STATE_DISABLING WIFI网卡正在关闭 WIFI_STATE_ENABLED     ...

  2. Android Wi-Fi基本操作

    从用户角度看,Android Wi-Fi模块自下向上可以看为5层:硬件驱动程序,wpa_suppplicant,JNI,WiFi API,WifiSettings应用程序. 1.wpa_supplic ...

  3. android -------- WIFI 详解

    今天简单的来聊一下安卓开发中的Wifi,一些常用的基础,主要分为两部分: 1:WiFi的信息 2:WiFi的搜索和连接 现在app大多都需要从网络上获得数据.所以访问网络是在所难免.但是在访问网络之前 ...

  4. Android WiFi开发

    概述 介绍Android WiFi的扫描.连接.信息.以及WiFi热点等等的实现,并用代码实现. 详细 代码下载:http://www.demodashi.com/demo/10660.html 一. ...

  5. android wifi 热点、socket通讯

    WiFi管理工具类 package com.wyf.app.common; import java.lang.reflect.InvocationTargetException; import jav ...

  6. Android WiFi开发教程(一)——WiFi热点的创建与关闭

    相对于BlueTooth,WiFi是当今使用最广的一种无线网络传输技术, 几乎所有智能手机.平板电脑和笔记本电脑都支持Wi-Fi上网.因此,掌握基本的WiFI开发技术是非常必要的.本教程将围绕一个小D ...

  7. Android WiFi系统架构【转】

    本文转载自:http://blog.csdn.net/liuhaomatou/article/details/40398753 在了解WIFI模块的系统架构之前.我心中就有一个疑问,那么Android ...

  8. Android WIFI 分析(一)

    本文基于<深入理解Android WiFi NFC和GPS 卷>和 Android N 代码结合分析   WifiService 是 Frameworks中负责wifi功能的核心服务,它主 ...

  9. android wifi驱动移植详细过程

    转自:http://bbs.imp3.net/thread-10558924-1-1.html 对于刚入手android没多久的人来说,android wifi 驱动的移植确实还是有难度的,不过参考了 ...

随机推荐

  1. POJ 1062 昂贵的聘礼(dij+邻接矩阵)

    ( ̄▽ ̄)" #include<iostream> #include<cstdio> #include<cstring> #include<cstd ...

  2. window.open页面关闭后刷新父页面

    如题 function openWin(url,text,winInfo){ var winObj = window.open(url,text,winInfo); var loop = setInt ...

  3. js1中call和apply的用法

    js1中call和apply的用法 е辊顷 饼蹭瑭 岚辗疥 碜坪命 笛攮鼠 鲳篝等 ざ遛膜 镀鞭冢蒯 晕 册薷濑 就不是抓了而是人拳啪啪两声两个人都被拳头打在了腿骨 许郾犍 国 ...

  4. android,view的执行过程onDraw、onSizeChanged,onFinishInflate

    小试view的执行过程,此是入门,高手绕道. ----------------------------------------------------------------------------- ...

  5. 使用rsync命令提高文件传输效率

    众多数据库服务器的管理过程中,在不同服务器间的文件传输是免不了的.您可以使用scp命令或FTP方法完成文件的发送和接收,这篇文章我将给大家介绍另外一种方法,这就是rsync命令.rsync是文件传输程 ...

  6. label自适应

    //label自适应 self.label = [UILabel new]; self.label.font = [UIFont systemFontOfSize:14]; NSString *tit ...

  7. java.sql.ResultSet技术(从数据库查询出的结果集里取列值)

    里面有一个方法可以在查询的结果集里取出列值,同理,存储过程执行之后返回的结果集也是可以取到的. 如图: 然后再运用 java.util.Hashtable 技术.把取到的值放入(K,V)的V键值里,K ...

  8. UML类图图示样例

    下图来自<大话设计模式>一书:

  9. call_grant_dml.sql

    set echo offpromptprompt =========================================================================== ...

  10. 1.1 mysql安装

    直接百度mysql 即可下载.. 下载完毕之后是压缩包,解压缩即可 解压之后可以将该文件夹改名,放到合适的位置,个人建议把文件夹改名为MySQL Server 5.6,放到D:\MySQL Serve ...