在NotificationListenerService的onNotificationPosted中获取通知的contentintent?

时间:2015-03-11 12:01:03

标签: android notifications listener android-notifications

一旦发布通知,我有什么办法可以检索通知的待处理内容吗?我在NotificationListenerService使用onNotificationPosted(statusbarNotification sbn)来检索基本通知信息,例如通知单文本和通知标题,通常由其他应用发布。有什么方法可以通过调用contentintent 检索通知中设置的setContentIntent 吗?

我是新来的,如果我做错了,请原谅我;)

1 个答案:

答案 0 :(得分:1)

是的,这是可能的。

获取StatusBarNotification的通知。然后访问contentIntent属性。

Notification n = sbn.getNotification();
PendingIntent intent = n.contentIntent;