在android中,当我通过后退按钮返回主菜单时,我的活动没有停止。
所以我使用下面的代码来阻止应用程序运行。但当我点击按钮时,显示不幸的是,应用程序已停止。因此,当我返回主菜单或后退按钮时,有一种简单的方法可以阻止我的应用程序运行。
protected void onDestroy() {
this.finish();
}
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lightsui"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/My_Theme"
>
<activity
android:name="com.example.lightsui.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>
</application>
</manifest>
答案 0 :(得分:0)
你回去时似乎不希望活动出现,这很容易实现(它正在停止,但只是通过后退键返回时恢复)
将以下标志添加到清单中的活动以获得所需的行为:
android:noHistory="true"