我有3个活动,我的用户不断循环。当用户回到主屏幕时,我需要终止以前的历史记录,这样用户就无法回击按钮并最终进入屏幕#2,那么这样做的好方法是什么? 顺便说一句 - 我正在使用1.6(API级别4)
重申一下 - 说我不知道或预测导致我原始观点的路径。但是一旦我加载它,我想清除导致用户访问该视图的历史记录。在2.0中,可以覆盖Activity#onBackPressed,但我需要1.6中的类似内容。
答案 0 :(得分:1)
据我所知,如果你想要有明确的活动历史,你可以用两种方式做事
(1)。在manifest.xml文件中
您也可以在AndroidManifest.xml文件中实现此功能,只需在您想要的内容中添加 android:noHistory =“true”属性
例如
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rdc.activity"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="xx" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".PickGalleryImageActivity"
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>
(2)。在Java代码中
您可以在开始活动时添加此标志 Intent.FLAG_ACTIVITY_NO_HISTORY
例如
Intent intent = new Intent(this, SomeOtherClass.class);
// do not keep this intent in history
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
另一个是如果你正在寻找下面的按钮刺穿,下面的例子可以帮助你
如果寻找Android api级别高达1.6 。
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
//todo here
return true;
}
return super.onKeyDown(keyCode, event);
}
希望它会帮助你!!
答案 1 :(得分:1)
好的,我假设您有3个活动,A,B和C.A是主屏幕,用户将遍历这3个页面。但是当用户输入A时,onBackPresed事件应该作为退出执行。我能说清楚吗?
在这种情况下,当您尝试从B或C启动A时,可以将Intent.FLAG_ACTIVITY_CLEAR_TOP添加到Intent,然后清除历史堆栈,堆栈中只有A。
如果要拦截后退键事件,则不需要覆盖onBackPressed()。在此方法可用之前,我们总是使用onKeyDown。
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
}
return super.onKeyDown(keyCode, event);
}