我知道 PendingIntent 项目是由PendingIntent.getActivity(context, ... , intent, ...) function
.
在我使用通知之后,需要跳过存储到意图的信息。然后将意图封装到PendingIntent
. 现在我想通过pendingIntent
. 或者我想如何通过pendingIntent
. 我怎么能得到意图?
发件人:
Intent openintent = new Intent(this, ZXReaderAbout.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, openintent, 0);//send openintent intent to system when click information
notification.setLatestEventInfo(this, "11", "22", contentIntent);
接收部分:
PendingIntent pIntent = notification.contentIntent;
也就是说它可以从pIntent
.
任何建议都非常感谢。