How to prevent going back to the previous activity?

前端 未结 13 1026
眼角桃花
眼角桃花 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 10:09

    I'm not sure exactly what you want, but it sounds like it should be possible, and it also sounds like you're already on the right track.

    Here are a few links that might help:

    Disable back button in android

      MyActivity.java =>
        @Override
        public void onBackPressed() {
    
           return;
        }
    

    How can I disable 'go back' to some activity?

      AndroidManifest.xml =>
    
    

提交回复
热议问题