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;
}
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;
}
You can prevent return by overriding onBackPressed()
and not invoking its super
method, but you cannot prevent the home button from triggering its actions.