Disable back button in android

后端 未结 17 1380
名媛妹妹
名媛妹妹 2020-11-22 05:10

How to disable back button in android while logging out the application?

17条回答
  •  一生所求
    2020-11-22 05:45

    Override the onBackPressed method and do nothing if you meant to handle the back button on the device.

    @Override
    public void onBackPressed() {
       if (shouldAllowBack()) {
           super.onBackPressed();
       } else {
           doSomething();
       }
    }
    

提交回复
热议问题