Re: [android-developers] Broadcast receiver execution.

2012-03-26 Thread Dianne Hackborn
A particular receiver can only process one broadcast at a time. As each broadcast happens, it is processed to determine the targets it should go to, and dispatched into the message queue for each target. When a later broadcast is sent, it will generally not be moved ahead of the queue. For the s

[android-developers] Broadcast receiver execution.

2012-03-25 Thread Put_tiMe
I have a class which is derived from 'BroadcastReceiver'. Here I've signed up for screen-off, screen-on, battery-changed and user-present intents. I want to know how my class receives messages. Are they received in the order they were raised? Or is there a chance that messages could arrive o