I think I didn't understand properly , but according to what I understood , why u are not closing the activity B , ActivityB.finish(); will close the current activity and come back to previous without loading it again.
On Wed, Nov 17, 2010 at 5:55 PM, Kostya Vasilyev <[email protected]> wrote: > There is a flag you can use for this, when launching A from B: > > > http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_REORDER_TO_FRONT > > If A is already running, it will be brought to front. > > -- Kostya > > 17.11.2010 15:18, umakantpatil пишет: > > Hi, >> >> I have been in problem of the Activity life-cycle. All though i read >> lots of docs on it put on getting clear picture on it. >> >> I have Activity A. In that activity I have menu options. If we click >> any option it opens the respective activity like >> if i click on 2nd button it opens Activity B >> Now again Activity B has same options into it. When user clicks on 1st >> button then i need to go back to activity A. >> So using this. >> Intent intent = new Intent().setClass(context, Articles.class); >> startActivity(intent); >> So always it starts new instance of activity and fetch data from DB. I >> want something like >> Activity A can be resumed back as it was. >> >> >> > > -- > Kostya Vasilyev -- WiFi Manager + pretty widget -- > http://kmansoft.wordpress.com > > > -- > 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]<android-developers%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- 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

