I want to kill the app when user presses the home button. Is there any way to do this on Android?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I implemented something similar by overriding
Activity.onUserLeaveHint(). This method gets called once home key is pressed but I think there where some caveats I can’t remember right now. Namely it got called on situations I didn’t want my application to finish and had to put flags to prevent unwanted exits.