tags:

views:

51

answers:

1
+1  Q: 

Changing activity?

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?

+1  A: 

Hi,

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.

ognian