How to prevent going back to the previous activity?

前端 未结 13 1027
眼角桃花
眼角桃花 2020-11-27 09:10

When the BACK button is pressed on the phone, I want to prevent a specific activity from returning to its previous one.

Specifically, I have login and sign up screen

13条回答
  •  旧巷少年郎
    2020-11-27 09:52

    Put

    finish();
    

    immediately after ActivityStart to stop the activity preventing any way of going back to it. Then add

    onCreate(){
        getActionBar().setDisplayHomeAsUpEnabled(false);
        ...
    }
    

    to the activity you are starting.

提交回复
热议问题