다음을 통해 공유


NotificationListenerService.GetActiveNotifications 메서드

정의

오버로드

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.service.notification.NotificationListenerService.getActiveNotifications(java.lang.String[])Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상