假如现在通知栏中有许多个Notification,如何才可以知道用户最终点击打开的是哪个通知??? Notification notification = new Notification(
R.drawable.notification_icon, "标题",
System.currentTimeMillis());
Intent intent = new Intent(
"com.activity.MyActivity");
                        // 每次附加的内容不同
intent.putExtra("content", "A");
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_UPDATE_CURRENT);
notification.setLatestEventInfo(this, "通知标题", "通知内容", pendingIntent);
notification.flags = Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(1, notification);
// 以上是其中我写的代码片段,因为每次我发的通知,其中intent中附加的内容不同。所以我想每次得到用户点击的那个通知上的不同的内容