// note: activity가 시작되기 전에 현재 task의 activity들을 모두 제거한다.
// 즉, 현재 불리는 activity가 새로운 root activity가 되며, 기존의 activity들은 모두 finish된다.
// 이 플래그는 FLAG_ACTIVITY_NEW_TASK와 함께 쓰여야 한다.
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
반응형
'Platform > Android' 카테고리의 다른 글
[Network] 네트워크 변화 감지 (0) | 2020.09.17 |
---|---|
[LOG] LogConfigurator (0) | 2020.09.17 |
[System] setImportantForAutofill (0) | 2020.09.17 |
[Error] Unable to instantiate appComponentFactory (0) | 2020.09.11 |
[UI] Action Bar (0) | 2020.09.04 |