[ANDROID] 어떻게 안드로이드 응용 프로그램 '다시 시작'을 프로그램 [중복]
ANDROID어떻게 안드로이드 응용 프로그램 '다시 시작'을 프로그램 [중복]
해결법
-
1.병력과 같은 체크 아웃 의도 속성, 분명 다시 스택 등 ... Intent.setFlags
병력과 같은 체크 아웃 의도 속성, 분명 다시 스택 등 ... Intent.setFlags
Intent mStartActivity = new Intent(HomeActivity.this, SplashScreen.class); int mPendingIntentId = 123456; PendingIntent mPendingIntent = PendingIntent.getActivity(HomeActivity.this, mPendingIntentId, mStartActivity, PendingIntent.FLAG_CANCEL_CURRENT); AlarmManager mgr = (AlarmManager) HomeActivity.this.getSystemService(Context.ALARM_SERVICE); mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 100, mPendingIntent); System.exit(0);
from https://stackoverflow.com/questions/15564614/how-to-restart-an-android-application-programmatically by cc-by-sa and MIT license
'ANDROID' 카테고리의 다른 글
[ANDROID] 어떻게 안드로이드에서보기에 doubletap을 들으려면? [복제] (0) | 2020.11.05 |
---|---|
[ANDROID] 어떻게 안드로이드에 구글 사용자 이름을 얻을 수 있나요? (0) | 2020.11.05 |
[ANDROID] (구글 플레이 제외) 안드로이드 응용 프로그램을 업데이트 (0) | 2020.11.05 |
[ANDROID] 안드로이드에서 연락처의 모든 세부 사항을 구하는 방법 (0) | 2020.11.05 |
[ANDROID] 어떻게 여부를 자동 모드에서 안드로이드 폰 프로그래밍 감지 할 수 있습니다 (0) | 2020.11.05 |