Currently I have 3 Activity
classes A, B and C.
Activity A is a singleTask
while other has the default launch mode.
Consider a case: the user is first in A, then starts B, and then starts C.
The back stack now is ABC.
Next, the user starts A again.
The back stack now is A, but what I would like to be achieved is ABCA.
I know not setting Activity
A to be singleTask
can have a back stack : ABCA.
But I really need the Activity A to be the same instance.
Anyone know how to do this?