Android Override multitask key

I have an old Android app with an old outdated menu button and do not plan to update it at the moment. On new equipment - Samsung Galaxy S5 - the menu button is removed and replaced with the "Multitasking" button. I know that longpress will show the menu. However, is there a way to override the new Multitasking button in the same way as you can do

@Override public void onBackPressed() { //Stuff } 
+1
android galaxy
Jun 05 '14 at 9:32
source share
1 answer

However, is there a way to override the new Multitasking button in the same way as you can do

Not at the application level SDK. A ROM modem or other firmware can do what it wants with this key.

+1
Jun 05 '14 at 10:24
source share



All Articles