On Tue, Sep 4, 2012 at 10:24 PM, HK <[email protected]> wrote: > Yes, Activity A belongs to a different team. I can ask for change request if > possible.
If Activity A belongs to a different team, you should be coordinating with them, having them fix their activity so onPause() is not destructive (such as by moving that logic to onStop() so a dialog-themed activity can appear and Activity A can remain visually intact), or by negotiating some sort of broadcast Intent whereby you can let them know that you are taking over the foreground. The onStop() approach, with Activity B being a dialog-themed activity, would seem to be the simplest approach given your description. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.1 Available! -- 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

