在android中。 管理wifi的管理器就是 WifiManager了。所以直接从
WifiManager说起。WifiManager context.getSystemService(Context.WIFI_SERVICE)//得到 WifiManager
setWifiEnabled(true) //打开wifi
setWifiEnabled(false) //...
分类:
移动开发 时间:
2015-07-22 18:55:16
阅读次数:
207
Calculates the level of the signal. This should be used any time a signal is being shown.
参数
rssi The power of the signal measured in RSSI.
numLevels The number of levels to consider in the calculated level.
返回值
A level of the signal, given in the range o...
分类:
其他好文 时间:
2015-07-16 22:22:11
阅读次数:
255
真的没话说了.......,为何要这样.......,觉得好玩吗.......,谷歌那个写这个获取wifiSSID的接口的工程师闲的蛋疼。
获取wifiSSID的方法如下:
android.net.wifi.WifiManager mWifiManager = (WifiManager) MainActivity.this
.getSystemService(Co...
分类:
移动开发 时间:
2015-06-12 14:53:25
阅读次数:
212
Android wifi对象属性及简易Demo
本章介绍Android开发中WiFi热点和WiFi属性的获取,介绍WiFi的名称、状态等属性以及获取周围WiFi热点的方法。
一、怎样获取wifi对象并进行操作
要操作 WIFI 设备,需要先获取 Context.getSystemService(Context.WIFI_SERVICE)获取WifiMana...
分类:
移动开发 时间:
2015-05-21 17:34:46
阅读次数:
286
WIFI 获取WIFI状态 WifiManager wifiManager = (WifiManager)context.getSystemService(Context.WIFI_SERVICE); if(wifiManager != null){ int wifiStat...
分类:
移动开发 时间:
2015-04-30 12:10:18
阅读次数:
148
需要配置权限 判断Android的WIFI与GPS状态 private void checkWifiAndGpsStatus() { boolean result = true; /* 取得WifiManager与LocationManager */ ...
分类:
移动开发 时间:
2015-04-22 11:08:01
阅读次数:
318
配置清单文件加上权限private String getLocalIpAddress() { int paramInt = ((WifiManager) getSystemService("wifi")).getConnectionInfo().getIpAddress(); ...
分类:
移动开发 时间:
2015-04-16 09:05:16
阅读次数:
169
以前总是在没有网用的时候想去蹭网,但是总是也不破解不了密码,在学了开发以后我一直就想看看这个手机的无线网络连接究竟是咋连的了,今天研究了下终于让我是对他有了一定的了解;
说到底其实还是通过android里边的manger来进行管理,wifi使用的是WifiManager,通过这个管理器你可以获取你想要获取的基本上所有东西了:还是直接看代码吧
package com.example.wif...
分类:
其他好文 时间:
2015-04-08 16:38:37
阅读次数:
135
一,WifiManager 新增: 1 public void setTdlsEnabled (InetAddress remoteIPAddress, boolean enable) 2 3 Enable/Disable TDLS on a specific local route. ...
分类:
移动开发 时间:
2015-03-31 12:37:20
阅读次数:
220
获取手机wifi信息 /**
* 获取Wifi的Mac地址
* @param context
* @return
*/
public static String getWifiBssid(Context context) {
WifiManager wifi = (WifiManager) context.getSystemServ...
分类:
其他好文 时间:
2015-03-21 18:44:37
阅读次数:
191