다음을 통해 공유


NotificationListenerService.CancelNotification 메서드

정의

오버로드

CancelNotification(String)

알림 관리자에게 단일 알림 해제에 대해 알릴 수 있습니다.

CancelNotification(String, String, Int32)
사용되지 않음.

알림 관리자에게 단일 알림 해제에 대해 알릴 수 있습니다.

CancelNotification(String)

알림 관리자에게 단일 알림 해제에 대해 알릴 수 있습니다.

[Android.Runtime.Register("cancelNotification", "(Ljava/lang/String;)V", "")]
public void CancelNotification (string? key);
[<Android.Runtime.Register("cancelNotification", "(Ljava/lang/String;)V", "")>]
member this.CancelNotification : string -> unit

매개 변수

key
String

에서 StatusBarNotification#getKey()해제할 알림입니다.

특성

설명

알림 관리자에게 단일 알림 해제에 대해 알릴 수 있습니다.

수신기에 Android 상태 표시줄 및 알림 패널의 동작과 유사하게 개별 알림을 해제할 수 있는 사용자 인터페이스가 있는 경우 사용합니다. 사용자가 UI를 사용하여 단일 알림을 해제한 후에 호출해야 합니다. 알림을 받으면 알림 관리자가 실제로 알림을 제거하고 콜백을 #onNotificationRemoved(StatusBarNotification) 받게 됩니다.

<b>참고:</b> 수신기에서 사용자가 탭/클릭/등으로 알림을 발생하도록 허용하는 경우 문제의 알림 android.app.Notification#contentIntent 에 플래그가 설정된 경우 해당 시간에 이 메서드를 android.app.Notification#FLAG_AUTO_CANCEL 호출해야 합니다.

서비스는 이 작업을 수행하기 전에 이벤트를 기다려야 #onListenerConnected() 합니다.

에 대한 android.service.notification.NotificationListenerService.cancelNotification(java.lang.String)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

CancelNotification(String, String, Int32)

주의

deprecated

알림 관리자에게 단일 알림 해제에 대해 알릴 수 있습니다.

[Android.Runtime.Register("cancelNotification", "(Ljava/lang/String;Ljava/lang/String;I)V", "")]
[System.Obsolete("deprecated")]
public void CancelNotification (string? pkg, string? tag, int id);
[<Android.Runtime.Register("cancelNotification", "(Ljava/lang/String;Ljava/lang/String;I)V", "")>]
[<System.Obsolete("deprecated")>]
member this.CancelNotification : string * string * int -> unit

매개 변수

pkg
String

알림 앱의 패키지입니다.

tag
String

의 알림 앱 android.app.NotificationManager#notify(String, int, android.app.Notification)에서 지정한 알림의 태그입니다.

id
Int32

의 알림 앱에서 지정한 알림의 ID입니다 android.app.NotificationManager#notify(String, int, android.app.Notification). <p>

특성

설명

알림 관리자에게 단일 알림 해제에 대해 알릴 수 있습니다.

수신기에 Android 상태 표시줄 및 알림 패널의 동작과 유사하게 개별 알림을 해제할 수 있는 사용자 인터페이스가 있는 경우 사용합니다. 사용자가 UI를 사용하여 단일 알림을 해제한 후에 호출해야 합니다. 알림을 받으면 알림 관리자가 실제로 알림을 제거하고 콜백을 #onNotificationRemoved(StatusBarNotification) 받게 됩니다.

<b>참고:</b> 수신기에서 사용자가 탭/클릭/등으로 알림을 발생하도록 허용하는 경우 문제의 알림 android.app.Notification#contentIntent 에 플래그가 설정된 경우 해당 시간에 이 메서드를 android.app.Notification#FLAG_AUTO_CANCEL 호출해야 합니다.

서비스는 이 작업을 수행하기 전에 이벤트를 기다려야 #onListenerConnected() 합니다.

이 멤버는 더 이상 사용되지 않습니다. 대신 #cancelNotification(String key)를 사용하세요. 이 메서드부터 android.os.Build.VERSION_CODES#LOLLIPOP 는 더 이상 알림을 취소하지 않습니다. 이전 애플리케이션에 대한 알림을 계속 취소합니다 targetSdkVersion android.os.Build.VERSION_CODES#LOLLIPOP.

에 대한 android.service.notification.NotificationListenerService.cancelNotification(java.lang.String, java.lang.String, int)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상