アクティビティを起動 (または更新) して製品の説明を表示する通知をいくつか作成したいと考えています。
Notification notification = new Notification(R.drawable.applicationicon,
Resources.getString("NewSaleNotification", context),
System.currentTimeMillis());
// Hide the notification after its selected
notification.flags |= Notification.FLAG_AUTO_CANCEL;
Intent intent = new Intent(context, MainApplication.class);
intent.putExtra("saleid", saleid);
// to be sure the activity won't be restarted
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent,
PendingIntent.FLAG_UPDATE_CURRENT);
notification.setLatestEventInfo(context, SaleTitle, SaleMessage, pendingIntent);
notificationManager.notify(saleid, notification);
PendingIntent を作成するとき、FLAG_CANCEL_CURRENT、FLAG_NO_CREATE、FLAG_ONE_SHOT、FLAG_UPDATE_CURRENT の 4 つの選択肢があります。
最後の定義( http://developer.android.com/reference/android/app/PendingIntent.html#FLAG_UPDATE_CURRENT )は私がやりたいことですが、うまくいきません。2 つの通知を作成すると、どちらも最新の「saleid」エクストラが同じになります。異なる「saleid」エクストラで複数の通知を行うにはどうすればよいですか?