Disable back button in android

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

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

17条回答
  •  我在风中等你
    2020-11-22 05:48

    Try this:

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
     if (keyCode == KeyEvent.KEYCODE_BACK) {
    
       return true;
     }
       return super.onKeyDown(keyCode, event);    
    }
    

提交回复
热议问题