I want to write an application which is consists on actions to preformed when already-known wifi networks get in or out of range.

For example, let's say my home wifi network's SSIS is "WifiHome", and i want to make a notification "You just left home!" whenever the device can't detect this specific network anymore. (Or alternativly - "You just entered home" when the device re-detect signals from this network).

My question is: Is is possible to listen to those changes without polling the available-network-list frequently? If it is, how can it be done?

Thank you!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You should listen to broadcast event SCAN_RESULTS_AVAILABLE_ACTION. This will be sent each time Wi-Fi scan is finished. When such event occurs just re-iterate the scan results that can be obtained via WifiManager's getScanResults.

You can manually trigger wi-fi scan using WifiManager's startScan.

link|improve this answer
But if i dont want to scan manually, how frequently should i expect to recieve this broadcast? (in terms of seconds, lets say) – Avraham Shukron May 12 '11 at 19:22
When wi-fi is active, you'll receive this broadcast every several seconds. But there is no way to configure this interval and my guess is that each manufacture may change this interval. I would recommend to introduce a setting X - "max delay between rescans". If you don't receive any scan results for X seconds, you'll force manual rescan. – inazaruk May 12 '11 at 19:39
OK. That's about it. one last question: Is there more specific event for "Current network disconnected"? – Avraham Shukron May 12 '11 at 19:50
You should listen for NETWORK_STATE_CHANGED_ACTION. – inazaruk May 12 '11 at 20:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.