Hi I am using the Application::onCreate to put my initialisation code of my app, but when waiting some time and starting other apps, I noticed the instance of the Application class gets created again...

How to detect globally when Android is shuttting down my Application instance?

link|improve this question

58% accept rate
It looks like using a Service instead of the Application class is the way to go. The Service class provides an onDestroy handler. – David May 19 '11 at 0:23
feedback

2 Answers

I am not an experienced android developer. But as a beginner, I think you can use the onDestroy() method of the Activity.

It's a good idea for you to look into the Lifecycle of the Activity.

(Search for Lifecycle in the following link) http://developer.android.com/guide/topics/fundamentals/activities.html

link|improve this answer
yes, but I have several activities and I want to get notified when Android kills my app process. Activities will be shutdown when they are not in used, but the Application process is supposed to remain in memory. However there is cases when the Application is still closed by Android, how to handle this event ? – David May 18 '11 at 0:07
There is an event Application::onTerminate() but according to the API it is only called while running the app on the emulator. – David May 18 '11 at 0:07
feedback
up vote 2 down vote accepted

I have been using the Service class and had no problem since. If someone has a better answer, let me know.

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.