I want to know how to exit an app when user press the Home Button.
As far as i know that Home Button moves the running app in background and puts Launcher process in front.
I know i can use finish() but i don't know where i should call it because i have no idea which function is going to get a call when user will press the Home Key.
Thanks.
Notification. For example, if you are doing this for security (e.g., force a login), please do it based on time. Whether the user presses HOME or responds to aNotificationor whatever should have no bearing, any more than if the user switches browser tabs away from a Web app should cause them to be automatically logged out of the Web app. – CommonsWare Apr 30 '11 at 18:38FLAG_ACTIVITY_NEW_TASKto yourIntentin thePendingIntentin the app widget. If that doesn't work, tryFLAG_ACTIVITY_CLEAR_TOP. And if I misunderstood the symptoms, my apologies. – CommonsWare Apr 30 '11 at 22:03