Disable back button in android

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

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

17条回答
  •  广开言路
    2020-11-22 06:04

    You can override the onBackPressed() method in your activity and remove the call to super class.

    @Override
    public void onBackPressed() {
      //remove call to the super class
      //super.onBackPressed();
    }
    

提交回复
热议问题