So I want to achieve the following: suppose I have one Activity in my app that generates an event that I want other Activities in my app's back stack to know about so they can react to it accordingly (i.e. update UI, refresh data via separate Thread, etc...). What strategies would I have to pursue in order to accomplish this?
Would I have to set up BroadcastReceivers and if so, how would I set up the receivers? Also, for this case, would it make sense to register and un-register the receiver(s) in onCreate and onDestroy respectively, since using onResume and onPause would prevent it from listening in when receiving Activity is in the background? -- 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

