通过单击启动器中的应用程序图标启动活动,应将活动带到前台,就像从历史记录中选择一样。所以不应该存在onCreate调用。
但是,如果我们在通过单击通知启动活动后尝试执行此操作,则启动程序只会启动该活动的另一个实例。
我必须添加哪些标志才能使启动器按预期工作(从后台恢复应用程序的确切状态)?
我会发布基本代码。
这会启动通知:
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,对于用户来说很奇怪)。
有趣的是,只有在您单击通知后才会发生这种情况(单击启动器行为以启动另一个实例)。
答案 0 :(得分:0)
如果您需要此行为,可以使用android:launchMode="singleTask"
标记中的标记activity
。如果当前有一个Active,则可以防止OS启动任何其他实例。有关launchbehaviors here
我在下面编辑了与Emanuel Moecklin评论相对应的答案。将lauchModes混合起来。
摘自Doku:
系统在新任务和路由的根目录下创建活动 意图。但是,如果活动的实例已经存在 存在,系统通过a将意图路由到现有实例 调用它的onNewIntent()方法,而不是创建一个新方法。
答案 1 :(得分:0)
尝试
Intent resumeIntent = new Intent(this, MainActivity.class)
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP;
如果设置,则正在启动的活动已在运行中 当前任务,然后而不是启动它的新实例 活动,其上的所有其他活动将被关闭 这个意图将作为一个传递到(现在在顶部)旧活动 新的意图。 http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_CLEAR_TOP