I don't know if these are related yet, but I have an app that won't let me click one of the buttons after resuming from onDestroy()

is this a known issue? the listeners are set onCreate()

and never set to null

link|improve this question

5  
Providing some code from both of those events (i.e. onCreate and onDestroy) would be helpful. – Xion Oct 20 '11 at 22:57
feedback

1 Answer

up vote 4 down vote accepted

onDestroy is the end of the life cycle for an activity. This means that the next time your activity is opened it is not "resumed" it is being created. This may be a bit confusing because even though the activity is being recreated onResume is still called. You might want to take a look at the activity lifecycle for a better description of what is actually happening as your activity moves through the different activity states.

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.