본문 바로가기

Dev_안드로이드/참고소스

최근 사용한 앱에서 제외

최근 사용한 앱에서 제외.


1. AndroidManifest 선언 방법

 -  제외시키고자 하는 Activity의 Property로  

   android:excludeFromRecents="true"

   한줄 추가 하면 됩니다.



예제입니다. 


<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

....

 <application

....

 <activity

        android:label="@string/app_name"
        android:excludeFromRecents="true"
        >


2. Intent에 Flag 사용 하는 방법

 - Intent에  Flag를 추가해주면 됩니다. .


예제입니다. 


Intent mIntent = new Intent(this, MainActivity.class);

mIntent.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);