NotificationListenerService.CancelNotification Method

Definition

Overloads

CancelNotification(String)

Inform the notification manager about dismissal of a single notification.

CancelNotification(String, String, Int32)
Obsolete.

Inform the notification manager about dismissal of a single notification.

CancelNotification(String)

Inform the notification manager about dismissal of a single notification.

[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

Parameters

key
String

Notification to dismiss from StatusBarNotification#getKey().

Attributes

Remarks

Java documentation for android.service.notification.NotificationListenerService.cancelNotification(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

CancelNotification(String, String, Int32)

Caution

deprecated

Inform the notification manager about dismissal of a single notification.

[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

Parameters

pkg
String

Package of the notifying app.

tag
String

Tag of the notification as specified by the notifying app in android.app.NotificationManager#notify(String, int, android.app.Notification).

id
Int32

ID of the notification as specified by the notifying app in android.app.NotificationManager#notify(String, int, android.app.Notification). <p>

Attributes

Remarks

Java documentation for android.service.notification.NotificationListenerService.cancelNotification(java.lang.String, java.lang.String, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to