Can't you override the back button on Android and handle it like a home button?

Asked 1 years ago, Updated 1 years ago, 123 views

When I press the Back button on Android, I want to stop the application and go to the home screen How shall I do it?

android button override back

2022-09-22 22:24

1 Answers

@Override
public void onBackPressed() {
    moveTaskToBack(true);
}

You can do it like this.


2022-09-22 22:24

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.