Wifi

官方提供的大致可以分为四个主要的类:WifiManager,ScanResult,WifiConfiguration,WifiInfo,此外还有WifiLock,MulticastLock等

 

WifiManager

提供wifi管理的各种主要API,主要包含wifi的扫描,建立连接,配置等

http://developer.android.com/reference/android/net/wifi/WifiManager.html

 

ScanResult

描述开启扫描后的Wifi热点的信息。包含SSID、Capabilities、frequency、level(信号强度)等。

http://developer.android.com/reference/android/net/wifi/ScanResult.html

 

WifiConfiguration

描述wifi的连接信息,包含SSID、SSID隐藏、Password等的设置。

http://developer.android.com/reference/android/net/wifi/WifiConfiguration.html

 

 

WifiInfo

描述已建立连接后的wifi信息。包含ip、mac地址、连接速度等信息。区别与ScanResult的概念。

http://developer.android.com/reference/android/net/wifi/WifiInfo.html

 

 

http://www.th7.cn/Program/Android/201303/130087.shtml

 

你可能感兴趣的:(Android)