Reputation: 35
Here i have opened activity in following order A->B->C->D now i just want to re-launch activity B so that order becomes: A->C->D->B
can anyone please tell me that how can i achieve this state in android.
Thanks in advance.
Upvotes: 0
Views: 81
Reputation: 139
Do this in your manifest file for activity B:
<activity
android:name=".B"
android:launchMode="singleTask"/>
Upvotes: 1