I have registered to ConnectivityManager.CONNECTIVITY_ACTION broad cast receiver, for receiving network state events, but my 'onReceive' function is not getting called when i turn on or off my wifi connection.

As i mentioned in the docs this is an Sticky Broadcast Receiver which gets fired when we register for it.

But i am not getting any events in my 'onReceive' function when i register for this receiver, what might be the cause?

In my Manifest file I have all the permissions for accessing Internet/Network/Wifi connections and there states.

I am registering to this intent using following code:

registerReceiver(mNetworkStateReceiver, new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));

In my Logcat i get following Error Message register for this broadcast receiver:

01-01 00:05:29.804: ERROR/WifiHW(1305): Unable to open connection to supplicant on "/data/system/wpa_supplicant/wlan0": Connection refused

What might be the cause, is there anyway of finding our whether Broadcast Receiver is registered properly or not.

Thanks.

link|improve this question

Do you see the same issue if you register the receiver via your manifest? Is you wifi connection usable for data transmission? Is it possible to post the code you're using in the onReceive() for mNetworkStateReceiver? – Free Wildebeest Jan 22 at 0:42
I have never tried to register it through manifest file, i will try it first! – PP. Jan 23 at 11:17
can you considered to award bounty.otherwise it will go in vain – Sameer Jan 25 at 9:25
feedback

4 Answers

up vote 2 down vote accepted

This work for me

        <receiver android:name=".receiver.ConnectivityReceiver">
            <intent-filter>
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
            </intent-filter>
        </receiver>

public class ConnectivityReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
    Log.d(ConnectivityReceiver.class.getSimpleName(), "action: "
            + intent.getAction());
}

}

and do not forget registering all network permission

link|improve this answer
feedback

try it using the manifest file

<receiver android:name=".MyNetworkStateReceiver" >
    <intent-filter >
        <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
    </intent-filter>
</receiver>

the class MyNetworkStateReceiver should extend BroadcastReceiver

link|improve this answer
I am doing it through JAVA code, no need to add this in manifest file. – PP. Jan 23 at 11:15
feedback

Looks like a lower-level issue - Googling the error reveals multiple ROM hacking forums and their wifi malfunctions. What're you testing on? Try testing on another device or an emulator. (I assume you have tried rebooting yours :) )

Also, make sure you unregister the receiver when your activity/service gets destroyed (maybe this has something to do with the connection error)

PS I know you said you do, but still double check you have

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

in your manifest.

link|improve this answer
feedback

You may also try getting permissions for the Internet, WIFI and Multicast lock, try adding these to the permissions.

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>

I am required to use these permission for an in house application I have built that uses not only the WiFi for sending and receiving network data, but any type of network adapter (LAN, RADIO) that I can filtered through the SDK in C (Device must be rooted). But using these permissions I have no trouble.

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.