如果用户点击通知,我的目标是返回到最后一个活动。我以这种方式在服务 onCreate() 中创建通知:
Intent notificationIntent = new Intent(this, MainActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
但是当我点击通知时,它会转到 MainActivity 而不是点击主页按钮之前打开的最后一个。
在清单中,我尝试使用带有 launchMode="singleTop"、"standard" 和 "singletask" 的 MainActivity,但没有成功。
谢谢。