How to prevent going back to the previous activity?

前端 未结 13 1022
眼角桃花
眼角桃花 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:50

    Put finish() just after

    Intent i = new Intent(Summary1.this,MainActivity.class);
                startActivity(i);
    finish();
    

提交回复
热议问题