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.


-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to