Android WiFi管理(WIFI_SERVICE)
Android WiFi管理(WIFI_SERVICE)
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.entel.research"
- android:versionCode="1"
- android:versionName="1.0" >
- <uses-sdk android:minSdkVersion="7" />
- <application
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name" android:debuggable="true">
- <activity
- android:label="@string/app_name"
- android:name=".WifiManagerActivity" >
- <intent-filter >
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
- <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
- <uses-permission android:name="android.permission.WAKE_LOCK" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- </manifest>
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello" />
- <Button
- android:id="@+id/wifiManager_open"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="打开WiFi" />
- <Button
- android:id="@+id/wifiManager_close"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="关闭WiFi" />
- <Button
- android:id="@+id/wifiManager_check"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="显示WiFi状态" />
- <Button
- android:id="@+id/wifiManager_WIFI_SETTINGS"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="WiFi网络设置" />
- <Button
- android:id="@+id/threeGManager_State"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="显示3G边境状态" />
- <Button
- android:id="@+id/wifiManager_WIRELESS_SETTINGS"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="无线网络配置" />
- </LinearLayout>
- package com.entel.research;
- import android.app.Activity;
- import android.content.Context;
- import android.content.Intent;
- import android.net.ConnectivityManager;
- import android.net.NetworkInfo.State;
- import android.net.wifi.WifiManager;
- import android.os.Bundle;
- import android.provider.Settings;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.Toast;
- public class WifiManagerActivity extends Activity
- {
- @Override
- public void onCreate(Bundle savedInstanceState)
- {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- Button wifiManager_open = (Button) findViewById(R.id.wifiManager_open);
- Button wifiManager_close = (Button) findViewById(R.id.wifiManager_close);
- Button wifiManager_check = (Button) findViewById(R.id.wifiManager_check);
- Button wifiManager_WIFI_SETTINGS = (Button) findViewById(R.id.wifiManager_WIFI_SETTINGS);
- Button wifiManager_WIRELESS_SETTINGS = (Button) findViewById(R.id.wifiManager_WIRELESS_SETTINGS);
- Button threeGManager_State = (Button) findViewById(R.id.threeGManager_State);
- final WifiManager wifiManager = (WifiManager) WifiManagerActivity.this
- .getSystemService(Context.WIFI_SERVICE);
- final ConnectivityManager conMan = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
- wifiManager_open.setOnClickListener(new OnClickListener()
- {
- public void onClick(View v)
- {
- wifiManager.setWifiEnabled(true);
- Toast.makeText(WifiManagerActivity.this, "Wifi开启",
- Toast.LENGTH_SHORT).show();
- }
- });
- wifiManager_close.setOnClickListener(new OnClickListener()
- {
- public void onClick(View v)
- {
- if (wifiManager.isWifiEnabled())
- {
- wifiManager.setWifiEnabled(false);
- Toast.makeText(WifiManagerActivity.this, "Wifi关闭",
- Toast.LENGTH_SHORT).show();
- }
- Toast.makeText(WifiManagerActivity.this, "Wifi关闭",
- Toast.LENGTH_SHORT).show();
- }
- });
- wifiManager_check.setOnClickListener(new OnClickListener()
- {
- public void onClick(View v)
- {
- String result = null;
- switch (wifiManager.getWifiState())
- {
- case WifiManager.WIFI_STATE_DISABLED:
- result = "WIFI已关闭";
- break;
- case WifiManager.WIFI_STATE_DISABLING:
- result = "WIFI正在关闭中";
- break;
- case WifiManager.WIFI_STATE_ENABLED:
- result = "WIFI已启用";
- break;
- case WifiManager.WIFI_STATE_ENABLING:
- result = "WIFI正在启动中";
- break;
- case WifiManager.WIFI_STATE_UNKNOWN:
- result = "未知WIFI状态";
- break;
- }
- Toast.makeText(WifiManagerActivity.this, result, Toast.LENGTH_SHORT)
- .show();
- }
- });
- wifiManager_WIFI_SETTINGS.setOnClickListener(new OnClickListener()
- {
- public void onClick(View v)
- {
- startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS));
- }
- });
- threeGManager_State.setOnClickListener(new OnClickListener()
- {
- public void onClick(View v)
- {
- State mobile = conMan.getNetworkInfo(
- ConnectivityManager.TYPE_MOBILE).getState();
- Toast.makeText(WifiManagerActivity.this, mobile.toString(),
- Toast.LENGTH_SHORT).show();
- }
- });
- wifiManager_WIRELESS_SETTINGS.setOnClickListener(new OnClickListener()
- {
- public void onClick(View v)
- {
- startActivity(new Intent(Settings.ACTION_WIRELESS_SETTINGS));
- }
- });
- }
- }
版权声明:本文为博主原创文章,未经博主允许不得转载。
- 上一篇Android 面试题
- 下一篇Android连接到加密网络
- http://blog.csdn.net/sbvfhp/article/details/7007090
- http://www.2cto.com/kf/201111/112219.html
Android WiFi管理(WIFI_SERVICE)的更多相关文章
- Android wifi管理类:WifiAdmin
1.wifi的五种状态: WIFI_STATE_DISABLED WIFI网卡不可用 WIFI_STATE_DISABLING WIFI网卡正在关闭 WIFI_STATE_ENABLED ...
- Android Wi-Fi基本操作
从用户角度看,Android Wi-Fi模块自下向上可以看为5层:硬件驱动程序,wpa_suppplicant,JNI,WiFi API,WifiSettings应用程序. 1.wpa_supplic ...
- android -------- WIFI 详解
今天简单的来聊一下安卓开发中的Wifi,一些常用的基础,主要分为两部分: 1:WiFi的信息 2:WiFi的搜索和连接 现在app大多都需要从网络上获得数据.所以访问网络是在所难免.但是在访问网络之前 ...
- Android WiFi开发
概述 介绍Android WiFi的扫描.连接.信息.以及WiFi热点等等的实现,并用代码实现. 详细 代码下载:http://www.demodashi.com/demo/10660.html 一. ...
- android wifi 热点、socket通讯
WiFi管理工具类 package com.wyf.app.common; import java.lang.reflect.InvocationTargetException; import jav ...
- Android WiFi开发教程(一)——WiFi热点的创建与关闭
相对于BlueTooth,WiFi是当今使用最广的一种无线网络传输技术, 几乎所有智能手机.平板电脑和笔记本电脑都支持Wi-Fi上网.因此,掌握基本的WiFI开发技术是非常必要的.本教程将围绕一个小D ...
- Android WiFi系统架构【转】
本文转载自:http://blog.csdn.net/liuhaomatou/article/details/40398753 在了解WIFI模块的系统架构之前.我心中就有一个疑问,那么Android ...
- Android WIFI 分析(一)
本文基于<深入理解Android WiFi NFC和GPS 卷>和 Android N 代码结合分析 WifiService 是 Frameworks中负责wifi功能的核心服务,它主 ...
- android wifi驱动移植详细过程
转自:http://bbs.imp3.net/thread-10558924-1-1.html 对于刚入手android没多久的人来说,android wifi 驱动的移植确实还是有难度的,不过参考了 ...
随机推荐
- POJ 1062 昂贵的聘礼(dij+邻接矩阵)
( ̄▽ ̄)" #include<iostream> #include<cstdio> #include<cstring> #include<cstd ...
- window.open页面关闭后刷新父页面
如题 function openWin(url,text,winInfo){ var winObj = window.open(url,text,winInfo); var loop = setInt ...
- js1中call和apply的用法
js1中call和apply的用法 е辊顷 饼蹭瑭 岚辗疥 碜坪命 笛攮鼠 鲳篝等 ざ遛膜 镀鞭冢蒯 晕 册薷濑 就不是抓了而是人拳啪啪两声两个人都被拳头打在了腿骨 许郾犍 国 ...
- android,view的执行过程onDraw、onSizeChanged,onFinishInflate
小试view的执行过程,此是入门,高手绕道. ----------------------------------------------------------------------------- ...
- 使用rsync命令提高文件传输效率
众多数据库服务器的管理过程中,在不同服务器间的文件传输是免不了的.您可以使用scp命令或FTP方法完成文件的发送和接收,这篇文章我将给大家介绍另外一种方法,这就是rsync命令.rsync是文件传输程 ...
- label自适应
//label自适应 self.label = [UILabel new]; self.label.font = [UIFont systemFontOfSize:14]; NSString *tit ...
- java.sql.ResultSet技术(从数据库查询出的结果集里取列值)
里面有一个方法可以在查询的结果集里取出列值,同理,存储过程执行之后返回的结果集也是可以取到的. 如图: 然后再运用 java.util.Hashtable 技术.把取到的值放入(K,V)的V键值里,K ...
- UML类图图示样例
下图来自<大话设计模式>一书:
- call_grant_dml.sql
set echo offpromptprompt =========================================================================== ...
- 1.1 mysql安装
直接百度mysql 即可下载.. 下载完毕之后是压缩包,解压缩即可 解压之后可以将该文件夹改名,放到合适的位置,个人建议把文件夹改名为MySQL Server 5.6,放到D:\MySQL Serve ...