Does Android provide a notification of being in vicinity of a new Wifi Network? Whether the device is configured to connect to that wifi network depends on whether the device has the wifi configuration set for that particular wifi network, but is it possible to get notification whenever entering any new wifi network?
I saw the WifiManager class but the states inside the class do not seem to achieve what I am trying to do. Any ideas?
| |||
feedback
|
|
Use a In this BroadcastReceiver, you can extract a NetworkInfo object from the intent:
Then process Is this what you were looking for? Edit after answer So if you want to know which wifi networks are available, use WifiManager.getScanResults() This gives you the list of nearby access points in You can get this information asynchronously by using a And finally if you wish to scan more often than the system does by default, you can trigger wifi scans yourself using | |||||
feedback
|