由於沒有解決方案,因此不是以下項的複本:Pending intent always make new activity。待處理意圖強制創建新活動
這裏是我的PendingIntent:
Intent intent = new Intent(context, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
return PendingIntent.getActivity(context, REQUEST_CODE_PUSH_MESSAGE_TYPE, intent, PendingIntent.FLAG_CANCEL_CURRENT);
如果我關閉應用程序(例如後退按鈕),並在通知使用的PendingIntent它會創建一個新的活動。
但是,如果我暫停應用程序(例如主頁按鈕),並單擊相同的通知活動(和包含片段)將被恢復。
如何每次使用此PendingIntent創建新活動(及其片段)?