Is there any way to block the back button on Android?

Asked 2 years ago, Updated 2 years ago, 138 views

Is there any way to block the back button while logging out of the application?

android button back

2022-09-22 22:20

1 Answers

You can override the onBackPressed() method.

@Override
public void onBackPressed() {
}


2022-09-22 22:20

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.