[android-developers] Life cycle

2010-03-18 Thread Anzi
Hi, 1. I want to know the behavior of activity for the cases where onStop and onDestroy were not called like low memory situations. 2. I was registered my handler in onCreate() and unregistring in onDestroy, what is the behavior if other thread sends messages to the registrants after the

Re: [android-developers] Life cycle

2010-03-18 Thread Mark Murphy
Anzi wrote: 1. I want to know the behavior of activity for the cases where onStop and onDestroy were not called like low memory situations. The process is destroyed, so the activity has no more behavior. 2. I was registered my handler in onCreate() and unregistring in onDestroy, what is the