1

I have an older Android App with the old legacy menu button and do not plan to update this at the moment. On newer hardware - Samsung Galaxy S5 - the menu button is removed and replaced with a "Multitasking"-button. I know a longpress will show the menu - However, is there a way to override the new "Multitasking"-button on the the same way as one can do

@Override
public void onBackPressed() {
    //Stuff
}
Thomas
  • 1,563
  • 3
  • 17
  • 37

1 Answers1

1

However, is there a way to override the new "Multitasking"-button on the the same way as one can do

Not at the level of an SDK app. A ROM mod or other firmware build could do what it wants with that key.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491