up vote 5 down vote favorite
5
share [g+] share [fb]

I came across this term in the android documentation with the accompanying definition

These are broadcasts whose data is held by the system after being finished, so that clients can quickly retrieve that data without having to wait for the next broadcast.

What does it mean? Can someone elaborate its use with a particular example? I believe we have to request a permission for using this intent? Why so?

<uses-permission android:name="android.permission.BROADCAST_STICKY"/> - Allows an application to broadcast sticky intents.
link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

Please read Mark Murphy's explanation here: http://stackoverflow.com/questions/2584497/what-is-the-difference-between-sendstickybroadcast-and-sendbroadcast-in-android

Heres an abstract example of how one might use a sticky broadcast:

Intent intent = new Intent("some.custom.action");
intent.putExtra("some_boolean", true);
sendStickyBroadcast(intent);

If you are listening for this broadcast in an Activity that was frozen (onPause), you could miss the actual event. This allows you to check the broadcast after it was fired (onResume).

EDIT: More on sticky boradcasts...

Also check out removeStickyBroadcast(Intent), and on API Level 5 +, isInitialStickyBroadcast() for usage in the Receiver's onReceive.

Hope that helps.

link|improve this answer
Hey thanks man! Big help... +1... :) – Shouvik Aug 16 '10 at 8:08
Hi, I am getting confused with sticky broadcast with the statically registering of the broadcast. I just read somewhere that the difference between registering a broadcast in the manifest file and registering programatically is only that the further one do not unregister the broadcast but it stays there, while the later one unregisters the broadcast in onPause() method. – Shaista Naaz Apr 25 '11 at 6:05
feedback

Please note that Sticky broadcasts are heavy on the system and are discouraged. Please read the note from hackbod in the discussion on 'Sticky Broadcasts and Concurrency Options' on the Android Developers group.

@Shouvik, Please specify the exact scenario where you are considering to use StickyBroadcasts. Someone may be able to suggest an alternative solution.

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.