Ever since I added a new Class to my Android app (specifically, a sqlite helper class) may app wants to relaunch after I press the home button. Before adding the class, the app would multitask as expected.

I am stumped. It seems onDestroy is called every time the app goes into the background.

Any tips or thoughts as to why this would happen?

link|improve this question
feedback

2 Answers

This is by design. Please refer to Android activity lifecycle for more info when/how your activity could be destroyed. Basically, as soon as your app goes into background, your activity can be killed at any moment.

If you want to continue execution, you need to create a Service that represents a long-running components in Android architecture.

link|improve this answer
It turned out I had android:finishOnCloseSystemDialogs="true" in the manifest file. IDK how it got there, but that's just part of the fun I guess. Thanks for the answer. – Patrick Oct 7 '11 at 6:58
feedback
up vote 0 down vote accepted

It turned out I had android:finishOnCloseSystemDialogs="true" in the manifest file.

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.