Reputation: 1043
I am in my fourth activity and I want to come back to the first activity directly (without closing the second and third activity). How to change to the activity directly?
Upvotes: 2
Views: 515
Reputation: 11541
Just bring it to front by startActivity(). You may want to add the flag FLAG_ACTIVITY_REORDER_TO_FRONT to the Intent, depending what behavior you need.
Upvotes: 4