Android / 读取所有活动状态栏通知
Android / Reading with all of active status bar notifications
在NotificationListenerService
class中,当然还有onNotificationPosted(StatusBarNotification sbn)
和onNotificationRemoved(StatusBarNotification sbn)
函数。
使用 onNotificationPosted(StatusBarNotification sbn)
功能,我可以在收到任何新通知时阅读它们。有什么方法可以永远阅读移动设备中以前发布的尚未关闭的通知吗?这必须通过以编程方式使用我自己的 Android 应用程序来完成。
您可以使用 getActiveNotifications()
获取属于 NotificationListenerService
class 的所有活动通知。
文档对这个方法说的很清楚:
Request the list of outstanding notifications (that is, those that are visible to the current user). Useful when you don't know what's already been posted.
在NotificationListenerService
class中,当然还有onNotificationPosted(StatusBarNotification sbn)
和onNotificationRemoved(StatusBarNotification sbn)
函数。
使用 onNotificationPosted(StatusBarNotification sbn)
功能,我可以在收到任何新通知时阅读它们。有什么方法可以永远阅读移动设备中以前发布的尚未关闭的通知吗?这必须通过以编程方式使用我自己的 Android 应用程序来完成。
您可以使用 getActiveNotifications()
获取属于 NotificationListenerService
class 的所有活动通知。
文档对这个方法说的很清楚:
Request the list of outstanding notifications (that is, those that are visible to the current user). Useful when you don't know what's already been posted.