java 杀死当前活动,清除堆栈,完成-----链接:http://stackoverflow.com/questions/8631095/android-preventing-going-back-

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 杀死当前活动,清除堆栈,完成-----链接:http://stackoverflow.com/questions/8631095/android-preventing-going-back-相关的知识,希望对你有一定的参考价值。

// Kill current activity when press back button
@Override
public void onBackPressed() {
    finish();
}

// Close current activity after load the one called.
Intent intent = new Intent(CharacterActivity.this, nextActivity.getClass());
startActivity(intent);
// Kill the current activity
finish();

// After Android 16 / Jellybean
// This command kill all activities 
finishAffinity();

以上是关于java 杀死当前活动,清除堆栈,完成-----链接:http://stackoverflow.com/questions/8631095/android-preventing-going-back-的主要内容,如果未能解决你的问题,请参考以下文章

清除堆栈活动并完成[重复]

清除旧 SDK(缺少 FLAG_ACTIVITY_CLEAR_TASK)上的完整 Android 活动堆栈

Android销毁活动,杀死进程

清除 android 活动堆栈开始一个新活动

清除活动堆栈

Android:清除活动堆栈