How to clean back stack on Android API 10 (Android 2.3.3)

拥有回忆 提交于 2019-12-18 08:48:33

问题


I would like to know how can I clean all previous activities of the stack (except the new one), but I want that in Android API 10 (Android 2.3.3).

Guided with this answer, I know it is not directly possible because the flag dedicated to do that exists since API 11.

But I would like to know if this is possible maybe with some compatibility or if someone has any solution.

Thanks in advance.


回答1:


On way to do this is to always start your activities using startActivityForResult(). In the case where you want to clean the activity stack have the current activity call setResult(RESULT_CANCELED) and then call finish(). In all activities (except your main or "root" activity) have the following method:

@Override
protected void onActivityResult (int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_CANCELED) {
        // Want to clear the activity stack so I should just go away now
        setResult(RESULT_CANCELED); // Propagate result to the previous activity
        finish();
}

This will finish all activities in the stack.




回答2:


You could add in manifest file android:noHistory="true" to each activity that you don't want to keep in the stack



来源:https://stackoverflow.com/questions/12234430/how-to-clean-back-stack-on-android-api-10-android-2-3-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!