アプリに通知があり、ユーザーがクリックしたときに既存のアクティビティを元に戻したいです。通知は元に戻したいアクティビティ内で生成されるので、まだ存在していると思います。
これは通知用の私のコードです:
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification noti = new Notification(R.drawable.icon, "s", 0);
CharSequence title = "S";
CharSequence details = "W";
Intent intent = new Intent(getBaseContext(), Start.class);
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP);
PendingIntent pending = PendingIntent.getActivity(getBaseContext(), 0, intent, 0);
noti.setLatestEventInfo(Start.this, title, details, pending);
nm.notify(0,noti);
しかし、何らかの理由で新しいアクティビティを作成し続けます。私は何を間違っていますか?