I am implementing paint Application. My problem is that when i color on object.After some times screen goes to sleep.When i awake the screen, my old paint lost. I find out issue its calling OnDestroy after Onpause automatically so it clears canvas. How to stop calling Ondestroy automatically.

link|improve this question

50% accept rate
1  
put some code here. – deepak Sharma Feb 21 at 4:32
onDestroy is called only when the system is shutting down your app. I think you mean onStop() is being called? Check out the activity life cycle here: developer.android.com/reference/android/app/Activity.html – Urban Feb 21 at 4:33
feedback

1 Answer

up vote 4 down vote accepted

You shouldn't try to circumvent Android's activity workflow and memory management by avoiding onDestroy() (in fact, I think you can't).

Use onSaveInstanceState(Bundle) to store your current state and restore it on onCreate(Bundle), if a Bundle is provided.

link|improve this answer
i have solved issue. It was calling onStop due to memory management problem and after that onDestroy. I solved it by memory managment – afnan khan Feb 23 at 3:08
feedback

Your Answer

 
or
required, but never shown

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