I want to disable the recent apps intent that is fired from the icon when you hold the home button. I am currently detecting, in the onCreate()
, if the intent is fired from the quick launch dialog, and then I call finish()
.
This entails that when the application goes to the background finish()
is called so that when the app is launched it goes through the onCreate()
. This requires strategic coding when switching between activities in the application.
I guess I can fire finish()
in the onResume()
also after detecting where the intent came from, but a bunch of unnecessary coding can be eliminated if the quick launch intent can simply be disabled.
Can the quick launch intent be disabled?