я создаю уведомление внутри BroadcastReceiver с помощью этого кода:
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns);
int icon = R.drawable.ic_stat_notification;
CharSequence tickerText = "New Notification";
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
notification.defaults |= Notification.DEFAULT_VIBRATE;
long[] vibrate = {0,100,200,200,200,200};
notification.vibrate = vibrate;
notification.flags |= Notification.FLAG_AUTO_CANCEL;
CharSequence contentTitle = "Title";
CharSequence contentText = "Text";
Intent notificationIntent = new Intent(context, NotificationActivity.class);
notificationIntent.putExtra(Global.INTENT_EXTRA_FOO_ID, foo_id);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
int mynotification_id = 1;
mNotificationManager.notify(mynotification_id, notification);
Когда я нажимаю на уведомление, оно открывает NotificationActivity, и внутри Activity я могу получить foo_id из Intent-Bundle (например, 1)
Однако, если запускается другое уведомление, и я снова нажимаю на него, действие по-прежнему получает «старое» значение (1) из Intent-Bundle. Я пытался очистить пакет с помощью clear (), но получаю тот же эффект. Я думаю, что что-то не так с моим кодом ..