1

我正在尝试使用下一个代码从我的应用程序堆栈返回到 My Application Home Activity:

protected void goHome(boolean offlineMode) {
    final Intent intent = new Intent(this, MainActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    startActivity(intent);
...
}

但在这种情况下,顶部的所有其他应用程序活动也将关闭。在这种情况下是否可以仅关闭我的应用程序的活动?

4

2 回答 2

2

这应该做的工作。

Intent i = new Intent(context, HomeActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK|Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
finish();
于 2013-01-15T15:47:38.383 回答
1

您也可以从您的AndroidManifest.xml文件中实现它,只需添加

android:noHistory="true" 

那些<activity>你想要的属性(例如HomeActivity)

看这里是清单的示例代码

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.rdc.helloWorld"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".HelloWorldActivity"
            android:label="@string/app_name" 
            android:noHistory="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

因此,当您单击主活动屏幕上的返回按钮时,它只会清除此屏幕的历史记录

您可能喜欢阅读 noHistory 标签详细信息,

android:noHistory="true" 是如何工作的?

于 2013-01-15T16:10:58.743 回答