Disable back button in android

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

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

17条回答
  •  野性不改
    2020-11-22 05:50

    You can do this simple way Don't call super.onBackPressed()

    Note:- Don't do this unless and until you have strong reason to do it.

    @Override
    public void onBackPressed() {
    // super.onBackPressed();
    // Not calling **super**, disables back button in current screen.
    }
    

提交回复
热议问题