我正在开发一个包含3项活动的应用。主要和其他两个,可以从主要开始。两者都有一个工具栏后退按钮,它通向Main,后面等待后面的堆栈。 在这种情况下会出现问题:
从Main开始活动B. - 将应用程序留在主屏幕 - 等待一段时间,做一些其他的事情,...(或强制关闭应用程序设置中的应用程序) - 使用应用程序概述重新启动它(应用程序在活动B中重新启动) - 按工具栏后退按钮 - >应用关闭。
此时我预计它会回到Main,但事实并非如此。
清单:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<!-- ACTIVITIES -->
<activity
android:name=".MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:launchMode="singleInstance"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ReminderActivity"
android:label="Reminder"
android:launchMode="singleTask"
android:parentActivityName=".MainActivity"
android:screenOrientation="portrait">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="yyyy.yy.yyyy.MainActivity" />
</activity>
<activity
android:name=".PreferencesActivity"
android:label="Preferences"
android:launchMode="singleTask"
android:parentActivityName=".MainActivity"
android:screenOrientation="portrait">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="yyyy.yy.yyyy.MainActivity" />
</activity>
<!-- RECEIVERS -->
<receiver android:name="yyyy.yy.yyyy.StartupReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name=".NotiDeactivateReceiver"></receiver>
<!-- ATTENTION: This was auto-generated to add Google Play services to your project for
App Indexing. See https://g.co/AppIndexing/AndroidStudio for more information. -->
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
活动: 我在stackoverflow上使用了我在这里找到的代码
public void initToolbar() {
toolbar = (Toolbar) findViewById(R.id.toolbar2);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == android.R.id.home) {
finish();
return true;
}
return super.onOptionsItemSelected(item);
}
我还试图通过使用NavUtils来“Up”。同样的效果。
我在我的场景中尝试了一些其他应用程序,我注意到,当他们被内存拉出(或者使用app-settings手动杀死我们)时,他们会重新启动他们的主要活动。我重新启动了我离开它的点,但可能没有后筹码。
你能帮我弄清楚这里有什么问题吗?
答案 0 :(得分:3)
尝试替换清单
中MainActivity的属性android:launchMode="singleInstance"
到
android:launchMode="singleTop"