[ReorderFour.java]
* FLAG_ACTIVITY_REORDER_TO_FRONT는 ReorderTwo.class를 stack의 가장 위로 이동시킨다.
Intent intent = new Intent(ReorderFour.this, ReorderTwo.class);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);
* FLAG_ACTIVITY_REORDER_TO_FRONT는 ReorderTwo.class를 stack의 가장 위로 이동시킨다.
'old > API_Demo' 카테고리의 다른 글
APP_Activity_TranslucentActivity (0) | 2010.03.16 |
---|---|
APP_Activity_SetWallpaper (0) | 2010.03.16 |
APP_Activity_Redirection (0) | 2010.03.16 |
APP_Activity_ReceiveResult (0) | 2010.03.16 |
APP_Activity_Persistent State (0) | 2010.03.15 |