Skip to content Skip to sidebar Skip to footer

Broadcast Receiver Is Triggered Automatically On Start

I have a registered BroadcastReceiver in my main activity. Activity sends a sticky in one of the tabs to trigger the broadcast receiver (TabActivity application). Everything works

Solution 1:

Sticky broadcasts are supposed to stay around (even they are received) so that they can be retrieved afterwards too. Perhaps you should try the simple way of broadcasting using:

sendBroadcast(i);

Read this.

Post a Comment for "Broadcast Receiver Is Triggered Automatically On Start"