通过单击启动器中的应用程序图标来启动活动,应该将活动带到前台,就像从历史中选择它一样。所以不应该存在 onCreate 调用。
但是,如果我们在通过单击通知启动 Activity 后尝试执行此操作,则启动器只会启动该 Activity 的另一个实例。
我必须添加哪些标志才能使启动器继续按预期工作(从后台恢复应用程序的确切状态)?
我将发布基本代码。
这将启动通知:
Intent resumeIntent = new Intent(this, MainActivity.class);
PendingIntent resumePendingIntent = PendingIntent.getActivity(this, 2,
resumeIntent, PendingIntent.FLAG_UPDATE_CURRENT);
Notification resumeNotification = new Notification.Builder(this).setContentTitle(
"Resume style")
.setSmallIcon(R.drawable.ic_launcher)
.setContentIntent(resumePendingIntent)
.build();
NotificationManager notificationManager = (NotificationManager) getSystemService(Service.NOTIFICATION_SERVICE);
notificationManager.notify(1, launcherNotification);
这是清单活动的外观:
<activity
android:name="com.example.ihatenotifiicationsapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
这个 resumeIntent 将被 Android 自动添加到 FLAG_ACTIVITY_NEW_TASK。此标志将允许从后台恢复应用程序(如果存在)。
一切都很好,直到这里,但是,如果在您单击此通知并恢复应用程序后,您从启动器中单击应用程序,那么 Android 会启动另一个 MainActivity 实例。
这会破坏我的应用程序和后台堆栈(堆栈中有 2 个 MainActivity,对用户来说很奇怪)。
有趣的是,只有在您单击通知后才会发生这种情况(单击启动器行为以启动另一个实例)。