Android中写与Wifi相关程序的注意事项——读LocationManagerService有感
1. 检测是否有wifi可用:
mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);if (mWifiManager != null) { List<ScanResult> wifiScanResults = mWifiManager.getScanResults(); if (wifiScanResults != null && wifiScanResults.size() != 0) { } }?2. WifiLock的应用:
??? 这儿有一篇详细的文章介绍http://malaqu.com/?p=1203
WifiLock Allows an application to keep the Wi-Fi radio awake. Normallythe Wi-Fi radio may turn off when the user has not used the device in awhile. Acquiring a WifiLock will keep the radio on until the lock isreleased. Multiple applications may hold WifiLocks, and the radio willonly be allowed to turn off when no WifiLocks are held in anyapplication.
Before using a WifiLock, consider carefully if your applicationrequires Wi-Fi access, or could function over a mobile network, ifavailable. A program that needs to download large files should hold aWifiLock to ensure that the download will complete, but a program whosenetwork usage is occasional or low-bandwidth should not hold a WifiLockto avoid adversely affecting battery life.
Note that WifiLocks cannot override the user-level “Wi-Fi Enabled”setting, nor Airplane Mode. They simply keep the radio from turning offwhen Wi-Fi is already on but the device is idle.
?
3. 在程序中注册WifiManager.SCAN_RESULTS_AVAILABLE_ACTION和WifiManager.WIFI_STATE_CHANGED_ACTION这两个intent,以关注Wifi的状态,要是程序有需求在wifi可用时做一些操作,这个很有用。