Hi guys,
I've got the following:
Activities A, B, C, D
. A
and D
can be reached at any time, anywhere from the application.
B
and C
are reached like this:
A -> B -> C
I have the following use case:
The user has entered C
( A -> B -> C
) then she has gone to D
.
When she wants to go to A
, I want to transfer her to the already started queue from A
- in other words I want her to go to the started C
.
Something like this A -> B -> C -> D -> (same) C
. But I don't want to lose D
from the activity stack. After this, when she presses the "back" button, she is transfered to D
again.
Is this possible and correct to do? What is the best practice?
If I haven't explained my situation clear enough, feel free to ask questions.
10x in advance,
Danail