次の方法で共有


NotificationListenerService.GetActiveNotifications メソッド

定義

オーバーロード

GetActiveNotifications()

未処理の通知 (つまり、現在のユーザーに表示される通知) の一覧を要求します。

GetActiveNotifications(String[])

キーで 1 つ以上の通知を要求します。

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() イベントを待機する必要があります。

の Java ドキュメントandroid.service.notification.NotificationListenerService.getActiveNotifications()

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象

GetActiveNotifications(String[])

キーで 1 つ以上の通知を要求します。

[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[]

要求する通知のキー

戻り値

キー リストと同じ順序で、要求されたキーに対応する通知の配列。

属性

注釈

キーで 1 つ以上の通知を要求します。 通知を追跡しているが、ビットを保持したくない場合に、戻ってそれらの通知からさらにデータを抽出する必要がある場合に便利です。

サービスは、この操作を実行する前に #onListenerConnected() イベントを待機する必要があります。

の Java ドキュメントandroid.service.notification.NotificationListenerService.getActiveNotifications(java.lang.String[])

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象