Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an Activity A from which I start Activity B. In Activity B I want to start a new instances of B (with different contents), so that I can navigate back to different instances of B. For example:

A -> B (with content x) -> B' (with content y) -back-> B (with content x)

My problem:

For an example navigation path:

A -> B -> B' -> B''

when pressing back in B'' I return to A and not to B' as expected. Doesn't android store instances of an activity in the back stack or do I have to do something to tell android to save every single instance so I can navigate between them?

share|improve this question
Show us the Intent your using and your Activities in your AndroidManifest – Blundell May 22 '12 at 10:40
Do not write any finish() after startactivity(); – V.J. May 22 '12 at 11:03

1 Answer

You should read Google's Tasks and Back Stack document.

share|improve this answer
Ok, it says "Because the activities in the back stack are never rearranged ... a new instance of that activity is created and pushed onto the stack (rather than bringing any previous instance of the activity to the top). As such, one activity in your application might be instantiated multiple times (even from different tasks). As such, if the user navigates backward using the Back button, each instance of the activity is revealed in the order they were opened (each with their own UI state)." But in my app, it doesn't reveal any instance. What am I doing wrong? – anel May 22 '12 at 11:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.