【发布时间】:2018-01-26 16:50:16
【问题描述】:
我正在使用NotificationListenerService 阅读状态栏上发布的通知。我能够阅读通知上的标题和文本,但找不到阅读设置到通知的操作和内容意图的方法。
【问题讨论】:
标签: android android-intent android-notifications android-notification-bar android-statusbar
我正在使用NotificationListenerService 阅读状态栏上发布的通知。我能够阅读通知上的标题和文本,但找不到阅读设置到通知的操作和内容意图的方法。
【问题讨论】:
标签: android android-intent android-notifications android-notification-bar android-statusbar
在您的onNotificationPosted() 中,您可以访问StatusBarNotification。这样,您可以调用getNotification(),然后使用公共成员变量contentIntent 和actions 分别访问内容意图和操作。
@Override
public void onNotificationPosted(StatusBarNotification sbn) {
Notificiation notification = sbn.getNotification();
PendingIntent contentIntent = notification.contentIntent;
Actions[] actions = notification.actions;
}
【讨论】:
getIntent 似乎是隐藏的,如果尝试使用反射获取方法,我会遇到异常。