[android-developers] Re: super.onCreate(savedInstanceState)

2011-06-17 Thread Indicator Veritatis
Now the next thing they/we need to know to keep from breaking things in future implementations is: do these calls always come first in the overrides, or can they come at any point, as long as they get called? On Jun 15, 12:42 am, Dianne Hackborn hack...@android.com wrote: Are you just asking why

Re: [android-developers] Re: super.onCreate(savedInstanceState)

2011-06-17 Thread Dianne Hackborn
The safest thing to do is call super first during creation, last during destroy, and the others don't matter. But in practice as long as you call to the super and are working today, we won't break you tomorrow. On Fri, Jun 17, 2011 at 1:24 PM, Indicator Veritatis mej1...@yahoo.comwrote: Now