My application is always showing in Task Manager when I exit from my application. How do I destroy it? I used the onDestroy() method, but still it is running. I am using alarm manager and some database operations; is that the problem?

link|improve this question

Don't bother. Android will automatically kill it when necessary. – ceejayoz Oct 3 '11 at 5:26
Android destroy's your application itself. No need to force destroy the application. – evilone Oct 3 '11 at 5:27
feedback

3 Answers

up vote 0 down vote accepted

Android does not destroy applications unless it needs to. See this answer for more details: Quitting an application - is that frowned upon?

link|improve this answer
feedback

System.exit(0) will do the job. However, it is not at all recommended. Android does some caching, and saving state, so as to relaunch your appp quicker, the next time you launch it.. so you do not want to be messing around with that.

link|improve this answer
feedback

Its not a problem. thats how android works, terminating Application is done by os. But if you want to kill it then you may have to kill the process.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.