Hi guys.
This may be a silly question for many of you but I need to know soon as I'm 
working on my programming class' final project.

Do activities get destroyed when I create a new activity from within an 
existing one? That is, if from my MainActivity activity I do this:

Intent inten = new Intent(this, SomeOtherActivity.class);
startActivity(inten);

will MainActivity get destroyed when I create and start SomeOtherActivity? 
If not, what happens with SomeOtherActivity finishes? I need to know 
because my main activity has a ListView that needs to get updated whenever 
SomeOtherActivity is done doing it's job and hands control back to 
MainActivity.

-- 
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

Reply via email to