On Oct 25, 3:38 pm, Mark Murphy <[EMAIL PROTECTED]> wrote: > I'm not 100% certain, but my guess would be the messages queue up and > will not get "handled" until the activity is brought back via onResume().
The Handler and activity in the background will continue running. Note that when we are talking about two activities in the same .apk, unless you specified otherwise in the manifest these are both been run on the same, main thread of the same shared process. So the "pausing" of an activity is just a call to onPause() and it is up to you to decide what to do about that (and the thread that called that method, then returns back to its message loop and dispatches the next message, such as one to call onResume() on the other activity). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

