从通知恢复活动
我的应用的状态栏中有一条通知:
Notification notification = new Notification(R.drawable.icon, null, System.currentTimeMillis());
Intent notificationIntent = new Intent(this.parent, MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this.parent, 0, notificationIntent, 0);
...
notification.flags = Notification.FLAG_ONGOING_EVENT;
mNotificationManager.notify(NOTIFICATION_ID, notification);
这样做的问题是,当您从应用程序中按主页按钮(将其推送到后台)然后按从状态栏访问的列表中的通知时,它会启动活动的全新副本。我想做的就是恢复应用程序(就像你长按主页按钮并按下应用程序的图标一样)。有没有办法创建一个意图来做到这一点?