tags:

views:

713

answers:

1

Suppose there are three activity,the display order is a->b->c. Now, I would like to resume the Activity a directly,after Activity c complete some operations. Resume the Activity a by Activity c directly,but create a new instance of Activity a.

A: 

Hi! It is simple I thnik... Intent i = new Intent(context,A.class); startActivity(i);

My problem to resume to the same instance of A... I can't handle it

Karoly Holczhauser