Disable back button in android

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

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

17条回答
  •  感情败类
    2020-11-22 06:05

    You just need to override the method for back button. You can leave the method empty if you want so that nothing will happen when you press back button. Please have a look at the code below:

    @Override
    public void onBackPressed() 
    {
       // Your Code Here. Leave empty if you want nothing to happen on back press.
    }
    

提交回复
热议问题