I have two apps A(activity A1, A2, A3) and B(activity B1, B2). My process like this:
A1 -> A2 -> A3 -> B1 -> B2
My question is: from activity B2, how to resume to the existed activity A3 - no creating a new activity A3 - like switching 2 applications by using multi-task button?
Thanks,
You need singleTop to make the activity always use the same instance, then in that activity onNewIntent will be triggered whenever we return there from another activity (via intent)