I would like to know as to what will happen to the thread which has been created by an activity and the device is rotated. I have observed that the onDestroy method is called when this happens. Will the thread be killed too?

If the thread is not killed, how can I reassociate the thread with the activity as a new instance of the activity is created on rotation.

Thanks,

Lakshmie

link|improve this question

54% accept rate
feedback

1 Answer

up vote 8 down vote accepted

The thread is not killed. You can keep a reference to your thread by overriding onRetainNonConfigurationInstance() to save the thread object and then getLastNonConfigurationInstance() to get it back.

link|improve this answer
Thanks a lot Casey! – Lakshmie Jun 15 '10 at 20:19
feedback

Your Answer

 
or
required, but never shown

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