Is it normal to only have a broadcast intent android.net.wifi.STATE_CHANGE when a Wifi connection is coming back up? I.e. I don't get this intent when Wifi is being disconnected.
UPDATE: I am mostly interested by >= 2.2 Froyo
|
Is it normal to only have a broadcast intent UPDATE: I am mostly interested by >= 2.2 Froyo
| |||||
feedback
|
In android's API it says that it's not a good idea to check STATE_CHANGE for network connectivity and instead you should use SUPPLICANT_CONNECTION_CHANGE_ACTION. this will notice an establishment to a wifi network, and the disconnection of a wifi network. I don't know if this might help you, but I do hope so. LINK | |||||||
feedback
|
|
I ended up having to use both. The android.net.wifi.supplicant.CONNECTION_CHANGE action sent a broadcast when the network was connected, but usually before the it had an IP address, so I needed the android.net.wifi.STATE_CHANGE action for that. The android.net.wifi.STATE_CHANGE action only received a broadcast on disconnect if I was disconnecting from the network, but wifi was still enabled (when hotspot was out of range, for example) So I put both actions for the receiver in the manifest:
and put an if to check which action was being called in the intent (this on the onReceive method of my BroadcastReceiver). Here is a partial copy of the code:
| ||||
|
feedback
|