Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am registering receiver on onResume():

registerReceiver(wifiConnectivityReceiver, new IntentFilter(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION));

This is the receiver it self :

class WiFiConnectivityReceiver extends BroadcastReceiver {

        @Override
        public void onReceive(Context context, Intent intent) {

            if (intent.getBooleanExtra(WifiManager.EXTRA_SUPPLICANT_CONNECTED, false)) {
                Log.d(TAG,"Connected to network!");
            } else {
                Log.d(TAG,"Could not connect to network!");
            }

        }

    }

In my application I am able to connect to selected WiFi network,but this SUPPLICANT_CONNECTION_CHANGE_ACTION is never fired.If I change it to SUPPLICANT_STATE_CHANGED_ACTION for example it is working.

I am working on ICS.
Did someone experienced problems like this with this intent?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.