Condividi tramite


NotificationListenerService.GetActiveNotifications Metodo

Definizione

Overload

GetActiveNotifications()

Richiedere l'elenco delle notifiche in sospeso, ovvero quelle visibili all'utente corrente.

GetActiveNotifications(String[])

Richiedere una o più notifiche per chiave.

GetActiveNotifications()

Richiedere l'elenco delle notifiche in sospeso, ovvero quelle visibili all'utente corrente.

[Android.Runtime.Register("getActiveNotifications", "()[Landroid/service/notification/StatusBarNotification;", "GetGetActiveNotificationsHandler")]
public virtual Android.Service.Notification.StatusBarNotification[]? GetActiveNotifications ();
[<Android.Runtime.Register("getActiveNotifications", "()[Landroid/service/notification/StatusBarNotification;", "GetGetActiveNotificationsHandler")>]
abstract member GetActiveNotifications : unit -> Android.Service.Notification.StatusBarNotification[]
override this.GetActiveNotifications : unit -> Android.Service.Notification.StatusBarNotification[]

Restituisce

Matrice di notifiche attive, ordinate in ordine naturale.

Attributi

Commenti

Richiedere l'elenco delle notifiche in sospeso, ovvero quelle visibili all'utente corrente. Utile quando non sai cosa è già stato pubblicato.

Il servizio deve attendere l'evento #onListenerConnected() prima di eseguire questa operazione.

Documentazione java per android.service.notification.NotificationListenerService.getActiveNotifications().

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.

Si applica a

GetActiveNotifications(String[])

Richiedere una o più notifiche per chiave.

[Android.Runtime.Register("getActiveNotifications", "([Ljava/lang/String;)[Landroid/service/notification/StatusBarNotification;", "GetGetActiveNotifications_arrayLjava_lang_String_Handler")]
public virtual Android.Service.Notification.StatusBarNotification[]? GetActiveNotifications (string[]? keys);
[<Android.Runtime.Register("getActiveNotifications", "([Ljava/lang/String;)[Landroid/service/notification/StatusBarNotification;", "GetGetActiveNotifications_arrayLjava_lang_String_Handler")>]
abstract member GetActiveNotifications : string[] -> Android.Service.Notification.StatusBarNotification[]
override this.GetActiveNotifications : string[] -> Android.Service.Notification.StatusBarNotification[]

Parametri

keys
String[]

chiavi delle notifiche da richiedere

Restituisce

Matrice di notifiche corrispondenti alle chiavi richieste, nello stesso ordine dell'elenco di chiavi.

Attributi

Commenti

Richiedere una o più notifiche per chiave. Utile se hai tenuto traccia delle notifiche, ma non vuoi conservare i bit e ora devi tornare indietro ed estrarre altri dati da tali notifiche.

Il servizio deve attendere l'evento #onListenerConnected() prima di eseguire questa operazione.

Documentazione java per android.service.notification.NotificationListenerService.getActiveNotifications(java.lang.String[]).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.

Si applica a