Android 앱을 개발하다 보면 사용자가 알림(notification)을 스와이프하여 삭제했을 때 특정 동작을 수행해야 하는 경우가 있습니다. 이때 유용하게 활용할 수 있는 것이 바로 Notification.deleteIntent입니다. deleteIntent에 PendingIntent를 미리 설정해 두면, 알림이 사용자에 의해 제거되는 순간 시스템이 해당 인텐트를 자동으로 실행해 줍니다.
이 글에서는 Android Studio에서 deleteIntent를 실제로 구현하는 전체 과정을 단계별로 살펴보겠습니다.
1단계: 새 프로젝트 생성
Android Studio에서 File ⇒ New Project 메뉴로 이동한 뒤, 프로젝트 생성에 필요한 정보를 모두 입력하여 새 프로젝트를 만듭니다.
2단계: activity_main.xml 레이아웃 작성
res/layout/activity_main.xml 파일에 아래 코드를 추가합니다. 화면 중앙에 'create notification' 버튼 하나를 배치하는 간단한 레이아웃으로, 이 버튼을 누르면 알림이 생성됩니다.
<? xml version = "1.0" encoding = "utf-8" ?> <RelativeLayout xmlns:android = "https://schemas.android.com/apk/res/android" xmlns:tools = "https://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" android:padding = "16dp" tools:context = ".MainActivity" > <Button android:onClick = "createNotification" android:text = "create notification" android:layout_centerInParent= "true" android:layout_width = "match_parent" android:layout_height = "wrap_content" /> </RelativeLayout>
3단계: MainActivity 구현
src/MainActivity에 아래 코드를 추가합니다. 핵심은 mBuilder.setDeleteIntent(getDeleteIntent()) 부분입니다. getDeleteIntent() 메서드는 'notification_cancelled'라는 액션을 담은 BroadcastReceiver용 PendingIntent를 반환하며, 이것이 알림 삭제 시점에 실행됩니다.
package app.tutorialspoint.com.notifyme ;
import android.app.NotificationChannel ;
import android.app.NotificationManager ;
import android.app.PendingIntent ;
import android.content.Intent ;
import android.os.Bundle ;
import android.support.v4.app.NotificationCompat ;
import android.support.v7.app.AppCompatActivity ;
import android.view.View ;
public class MainActivity extends AppCompatActivity {
public static final String NOTIFICATION_CHANNEL_ID = "10001" ;
private final static String default_notification_channel_id = "default" ;
@Override
protected void onCreate (Bundle savedInstanceState) {
super .onCreate(savedInstanceState) ;
setContentView(R.layout. activity_main ) ;
}
public void createNotification (View view) {
Intent notificationIntent = new Intent(getApplicationContext() , MainActivity. class ) ;
notificationIntent.putExtra( "fromNotification" , true ) ;
notificationIntent.setFlags(Intent. FLAG_ACTIVITY_CLEAR_TOP | Intent. FLAG_ACTIVITY_SINGLE_TOP ) ;
PendingIntent pendingIntent = PendingIntent. getActivity ( this, 0 , notificationIntent , 0 ) ;
NotificationManager mNotificationManager = (NotificationManager) getSystemService( NOTIFICATION_SERVICE ) ;
NotificationCompat.Builder mBuilder = new
NotificationCompat.Builder(getApplicationContext() , default_notification_channel_id ) ;
mBuilder.setContentTitle( "My Notification" ) ;
mBuilder.setContentIntent(pendingIntent) ;
mBuilder.setContentText( "Notification Listener Service Example" ) ;
mBuilder.setSmallIcon(R.drawable. ic_launcher_foreground ) ;
mBuilder.setAutoCancel( true ) ;
mBuilder.setDeleteIntent(getDeleteIntent()) ;
if (android.os.Build.VERSION. SDK_INT >= android.os.Build.VERSION_CODES. O ) {
int importance = NotificationManager. IMPORTANCE_HIGH ;
NotificationChannel notificationChannel = new NotificationChannel( NOTIFICATION_CHANNEL_ID , "NOTIFICATION_CHANNEL_NAME" , importance) ;
mBuilder.setChannelId( NOTIFICATION_CHANNEL_ID ) ;
assert mNotificationManager != null;
mNotificationManager.createNotificationChannel(notificationChannel) ;
}
assert mNotificationManager != null;
mNotificationManager.notify(( int ) System. currentTimeMillis () , mBuilder.build()) ;
}
protected PendingIntent getDeleteIntent () {
Intent intent = new Intent(MainActivity. this, NotificationBroadcastReceiver. class ) ;
intent.setAction( "notification_cancelled" ) ;
return PendingIntent. getBroadcast (MainActivity. this, 0 , intent , PendingIntent. FLAG_CANCEL_CURRENT ) ;
}
}참고: 위 예제는 기존 support 라이브러리(android.support.*)를 사용하지만, 최신 프로젝트라면 AndroidX(androidx.core.app.NotificationCompat, androidx.appcompat.app.AppCompatActivity 등)로 대체하면 됩니다. 또한 Android 12(API 31) 이상에서는 PendingIntent 생성 시 반드시 FLAG_IMMUTABLE 또는 FLAG_MUTABLE 플래그를 함께 지정해야 하므로, 타깃 SDK 버전에 맞게 수정하는 것이 좋습니다.
4단계: NotificationBroadcastReceiver 작성
src/NotificationBroadcastReceiver에 아래 코드를 추가합니다. 알림이 삭제되면 시스템이 이 리시버로 브로드캐스트를 전송하고, 리시버는 액션이 'notification_cancelled'인지 확인한 후 화면에 토스트 메시지를 표시합니다.
package app.tutorialspoint.com.notifyme ;
import android.content.BroadcastReceiver ;
import android.content.Context ;
import android.content.Intent ;
import android.widget.Toast ;
public class NotificationBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive (Context context , Intent intent) {
String action = intent.getAction() ;
if (action.equals( "notification_cancelled" )) {
Toast. makeText (context , "Notification Removed" , Toast. LENGTH_SHORT ).show() ;
}
}
}5단계: AndroidManifest.xml 설정
마지막으로 AndroidManifest.xml에 아래와 같이 BroadcastReceiver를 등록합니다. 리시버가 매니페스트에 선언되어 있어야 알림 삭제 이벤트를 정상적으로 수신할 수 있습니다.
<? xml version = "1.0" encoding = "utf-8" ?> <manifest xmlns: android = "https://schemas.android.com/apk/res/android" package= "app.tutorialspoint.com.notifyme" > <uses-permission android :name = "android.permission.VIBRATE" /> <uses-permission android :name = "android.permission.RECEIVE_BOOT_COMPLETED" /> <application android :allowBackup = "true" android :icon = "@mipmap/ic_launcher" android :label = "@string/app_name" android :roundIcon = "@mipmap/ic_launcher_round" android :supportsRtl = "true" android :theme = "@style/AppTheme"> <receiver android :name = ".NotificationBroadcastReceiver" android :enabled = "true" android :exported = "true" > </receiver> <activity android :name = ".MainActivity" > <intent-filter> <action android :name = "android.intent.action.MAIN" /> <category android :name = "android.intent.category.LAUNCHER" /< </intent-filter> </activity> </application> </manifest>
앱 실행 및 결과 확인
이제 애플리케이션을 실행해 보겠습니다. 실제 Android 기기가 컴퓨터에 연결되어 있다고 가정합니다. Android Studio에서 프로젝트의 액티비티 파일 중 하나를 연 뒤 툴바의 Run 아이콘을 클릭하세요. 옵션 목록에서 본인의 모바일 기기를 선택하면, 기기에 아래와 같은 기본 화면이 표시됩니다.

화면 중앙의 'create notification' 버튼을 눌러 알림을 생성한 다음, 해당 알림을 좌우로 스와이프하여 삭제해 보세요. 알림이 제거되는 즉시 deleteIntent에 등록된 브로드캐스트가 발생하고, 리시버가 이를 받아 'Notification Removed' 토스트 메시지를 화면에 띄워 줍니다.
