Sunday, April 19, 2015

Android 앱 액티비티 중복 실행 방지

AndroidManifest.xml
<application ...>

android:launchMode="singleInstance"
android:excludeFromRecents="true"
android:taskAffinity=""

아래는 노티피케이션이 왔을때 중복 실행 방지
@Override
public void onNewIntent(Intent i) {

}

No comments:

Post a Comment