NotificationListenerService.GetActiveNotifications 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetActiveNotifications() |
要求未處理的通知清單(也就是目前使用者可以看到的通知清單)。 |
GetActiveNotifications(String[]) |
依金鑰要求一或多個通知。 |
GetActiveNotifications()
要求未處理的通知清單(也就是目前使用者可以看到的通知清單)。
[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[]
傳回
使用中通知的陣列,依自然順序排序。
- 屬性
備註
要求未處理的通知清單(也就是目前使用者可以看到的通知清單)。 當您不知道已經張貼的內容時很有用。
服務應該先等候事件, #onListenerConnected()
再執行這項作業。
的 android.service.notification.NotificationListenerService.getActiveNotifications()
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
GetActiveNotifications(String[])
依金鑰要求一或多個通知。
[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[]
參數
- keys
- String[]
要要求之通知的金鑰
傳回
對應至所要求金鑰的通知陣列,順序與金鑰清單相同。
- 屬性
備註
依金鑰要求一或多個通知。 如果您一直在追蹤通知,但不想保留位,而現在需要返回並擷取更多數據從這些通知中擷取,則很有用。
服務應該先等候事件, #onListenerConnected()
再執行這項作業。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。