I want to disable the intention of the latest applications, which is launched from the icon when you hold the home button. Currently, I find in onCreate()if the intent is launched from the quick launch dialog box, and then I call finish().
This implies that when the application goes to the background finish(), it is called so that when the application starts, it passes through onCreate(). This requires strategic coding when switching between actions in the application.
I think that I can start finish()in onResume()also after discovering where the intent came from, but a bunch of unnecessary coding can be eliminated if the quick start intent can simply be turned off.
Is it possible to disable the quick launch intent?
source
share