On Fri, Mar 23, 2012 at 10:24 AM, Tac <[email protected]> wrote: > When B is suspended by any reason and the process is killed > by the OS, and came back to B, I call B.finish() but > A.onActivityResult() is not called. >
If your app is "suspended", where you need to save and restore state, then you should get back to A with onActivityResult. If your app is "kill", where you process is completely brought down, you will not go back to B, you will start back at A, from scratch. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- 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

