Partager via


NotificationManager.Notify Méthode

Définition

Surcharges

Notify(String, Int32, Notification)

Publie une notification à afficher dans la barre d’état.

Notify(Int32, Notification)

Publiez une notification à afficher dans la barre d’état.

Notify(String, Int32, Notification)

Publie une notification à afficher dans la barre d’état.

[Android.Runtime.Register("notify", "(Ljava/lang/String;ILandroid/app/Notification;)V", "GetNotify_Ljava_lang_String_ILandroid_app_Notification_Handler")]
public virtual void Notify (string? tag, int id, Android.App.Notification? notification);
[<Android.Runtime.Register("notify", "(Ljava/lang/String;ILandroid/app/Notification;)V", "GetNotify_Ljava_lang_String_ILandroid_app_Notification_Handler")>]
override this.Notify : string * int * Android.App.Notification -> unit

Paramètres

tag
String

Identificateur de chaîne pour cette notification. Peut avoir la valeur null.

id
Int32

Identificateur de cette notification. La paire (balise, ID) doit être unique dans votre application.

notification
Notification

Objet Notification décrivant ce qu’il faut montrer à l’utilisateur. Ne doit pas avoir la valeur Null.

Attributs

Remarques

Publie une notification à afficher dans la barre d’état. Si une notification avec la même balise et l’ID ont déjà été publiées par votre application et qu’elles n’ont pas encore été annulées, elles sont remplacées par les informations mises à jour.

Tous android.service.notification.NotificationListenerService listener services seront autorisés Intent#FLAG_GRANT_READ_URI_PERMISSION à accéder à n’importe quel Uri uris élément fourni sur cette notification ou cette NotificationChannel notification est publiée à l’aide Context#grantUriPermission(String, Uri, int). L’autorisation est révoquée lorsque la notification est annulée, ou vous pouvez révoquer des autorisations avec Context#revokeUriPermission(Uri, int).

Documentation Java pour android.app.NotificationManager.notify(java.lang.String, int, android.app.Notification).

Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.

S’applique à

Notify(Int32, Notification)

Publiez une notification à afficher dans la barre d’état.

[Android.Runtime.Register("notify", "(ILandroid/app/Notification;)V", "GetNotify_ILandroid_app_Notification_Handler")]
public virtual void Notify (int id, Android.App.Notification? notification);
[<Android.Runtime.Register("notify", "(ILandroid/app/Notification;)V", "GetNotify_ILandroid_app_Notification_Handler")>]
override this.Notify : int * Android.App.Notification -> unit

Paramètres

id
Int32

Identificateur de cette notification unique au sein de votre application.

notification
Notification

Objet Notification décrivant ce qu’il faut montrer à l’utilisateur. Ne doit pas avoir la valeur Null.

Attributs

Remarques

Publiez une notification à afficher dans la barre d’état. Si une notification portant le même ID a déjà été publiée par votre application et n’a pas encore été annulée, elle sera remplacée par les informations mises à jour.

Documentation Java pour android.app.NotificationManager.notify(int, android.app.Notification).

Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.

S’applique à