【发布时间】:2016-01-14 18:44:10
【问题描述】:
我正在尝试使用 NotificationListenerService 监控此应用的通知。我想捕获与其通知关联的 PendingIntent 并将其发送到另一个活动。这个活动显示了一个简单的按钮来启动这个捕获的pendingIntent。我应该如何跨活动传输这个捕获的 PendingIntent?
@Override
public void onNotificationPosted(StatusBarNotification sbn) {
super.onNotificationPosted(sbn);
PendingIntent notiPendingIntent = sbn.getNotification().contentIntent;
}
【问题讨论】:
标签: android android-intent notifications