0

How could I do that when the user presses the Home or Back button my app doesn't go to the background? I tried this but it didn't work

@Override
protected void onUserLeaveHint() {
return;
}
Steve
  • 49
  • 1
  • 7

1 Answers1

1

You can prevent return by overriding onBackPressed() and not invoking its super method, but you cannot prevent the home button from triggering its actions.

Kyle Emmanuel
  • 2,193
  • 1
  • 15
  • 22