[android-developers] Re: paused activity

2011-07-29 Thread andromedesoft
Just send a message back from c to b. You should use startActivityForResult. So B reads the message and depending on the value, calls A or paints itself. It works. Greetings, andromedesoft On Jul 28, 7:20 pm, Ab Caballero a...@mac.com wrote: I have an application with 3 activities, which i

[android-developers] Re: paused activity

2011-07-29 Thread Gopal NIT JSR
when u are moving from activity B-C, finish your activity B, by calling finish() in activity B, so that when you press back from activity C or you call finish() in activity C, you will be directly taken to activity A. (My assumption for this solution is that you dont need activity B anymore once