I am starting up my app in the emulator and seeing a call to onDestroy() on the starting activity. Android doc seems to suggest that onDestroy() is called only when the app is stopped. Are there other circumstances when it can be called? It causes a problem for my app because I am shutting down an executor in the onDestroy() method (which was created at class loading time). The first attempt to use the executor then throws a RejectedExecutionException. I'm guessing this is because I have shut it down.
Wisdom gratefully received.
Activity.finish()anywhere? – techiServices Aug 15 '12 at 20:46finish()causesonDestroy()to be called. When you rotate your device Android will kill your app and recreate it. You therefore need to handle such situations to best suit your needs. Read up on Activity Lifecycle in the API documentation. developer.android.com/training/basics/activity-lifecycle/… – techiServices Aug 15 '12 at 21:54