FLAG_ACTIVITY_CLEAR_TOP [Android] 스택에 쌓인 액티비티 모두 종료하기http://neoroid.tistory.com/201 [Android] 스택에 쌓인 액티비티 모두 종료하기2012/11/01 15:24 | 프로그래밍/안드로이드팁예를들어 A, B, C Activity가 있다고 칩시다. A에서 B로 갈 때 finish()를 하지 않고 갑니다. 즉, Intent intent = new Intent(A.this, B.class);startActivity(intent); startActivity(intent); 만 이용해서 이동한 것이지요. 그렇게 B로 이동한 후 또 C로 이동합니다. Intent intent = new Intent(B.this, C.class);startActivi..