Hello everyone..
Im tried to listen a intent through BroadcastReceiver..
The intent is android.intent.action.PROVIDER_CHANGED..

I implemented in AndroidManifest.xml
<receiver android:name=".MyReceiver">
            <intent-filter>
                <action
android:name="android.intent.action.PROVIDER_CHANGED" />
            </intent-filter>
</receiver>

And in the class MyReceiver that extends BroadcastReceiver, I
implemented the method onReceive(Context context, Intent intent)..
But I dont know why when I receive a Intent, it doesn't pass there..

Could someone help me?

Thanks in advance,
Ricardo.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to