낭만 프로그래머
안드로이드(Android)에서 앱이 백그라운드로 진입시에 종료하게 만들기 본문
앱을 개발하다가 보면 홈키를 눌러 Background에 집입 했을 경우 앱을 종료 시키고 실행시에 처음부터 시작하게 만들어야 하는 경우가 있다.
간단하게 AndroidManifest.xml 파일에 Activity에 android:noHistory="true" 를 넣어 주면 된다
<activity
android:name=".MainActivity"
android:exported="true"
android:screenOrientation="landscape"
android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
'Android' 카테고리의 다른 글
안드로이드(Android) SharedPreferences를 이용하여 데이터 저장 (0) | 2021.12.03 |
---|---|
안드로이드(Android) Custom Dialog 만들기 (0) | 2021.12.03 |
안드로이드(Android) EditText 입력시 영문자판으로 나오게 하기 (0) | 2021.12.03 |
안드로이드(Android) 텍스트가 대문자로 나올 경우 (0) | 2021.11.27 |
안드로이드(Android) 화면이 꺼지지 않게 설정 (0) | 2021.11.27 |