Reputation: 61
Hi I want to know how to specify to a Broadcast Receiver that I want to listen for the content://mms-sms/conversations intent.
In Log cat you can see the Intent fired when you open the messages Application on the emulator or real device. I want to trigger an action when this Intent gets activated.
Thanks in advance for your help.
Upvotes: 0
Views: 438
Reputation: 1006819
I want to know how to specify to a Broadcast Receiver that I want to listen for the content://mms-sms/conversations intent.
That is not possible.
In Log cat you can see the Intent fired when you open the messages Application on the emulator or real device.
Correct. However, that is starting an activity. You cannot register a BroadcastReceiver
to find out when the user starts any particular activity.
Upvotes: 1