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

link|improve this question

I had the same problems for weeks and I think it's normal (or a bug ;)). I know this doesn't help, but just for information... – Roflcoptr Mar 21 '11 at 23:46
Just to clarify for future readers: that intent is for the state (disabled, enabling, enabled, disabling) of the wifi transceiver, basically telling you if wifi is on or off. You were looking for the state of connectivity, which is different. – JeffE Nov 4 '11 at 21:42
feedback

2 Answers

up vote 9 down vote accepted
+50

public static final String SUPPLICANT_CONNECTION_CHANGE_ACTION

Since: API Level 1 Broadcast intent action indicating that a connection to the supplicant has been established (and it is now possible to perform Wi-Fi operations) or the connection to the supplicant has been lost. One extra provides the connection state as a boolean, where true means CONNECTED. See Also

EXTRA_SUPPLICANT_CONNECTED Constant Value: "android.net.wifi.supplicant.CONNECTION_CHANGE"

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

link|improve this answer
I get a connection change event on "disconnect" now! Thanks! – jldupont Mar 22 '11 at 0:27
1  
I'm glad it worked out! Good luck with your project mate! – rsplak Mar 26 '11 at 15:50
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:

<receiver android:name="net.moronigranja.tproxy.WifiReceiver">
            <intent-filter>
                    <action android:name="android.net.wifi.STATE_CHANGE"/>
                    <action android:name="android.net.wifi.supplicant.CONNECTION_CHANGE" />
            </intent-filter>
</receiver>

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:

public void onReceive(Context c, Intent intent) {
      if(intent.getAction().equals(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION)){ 
          boolean connected = intent.getBooleanExtra(WifiManager.EXTRA_SUPPLICANT_CONNECTED, false);
          if(!connected) {
               //Start service for disconnected state here
          }
      }

      else if(intent.getAction().equals(WifiManager.NETWORK_STATE_CHANGED_ACTION)){
          NetworkInfo netInfo = intent.getParcelableExtra(WifiManager.EXTRA_NETWORK_INFO);
          if( netInfo.isConnected() )
          {
              //Start service for connected state here.
          }   
      }
  }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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