I understand that Android Activities have specific lifecycles and that onCreate should be overridden and used for initialization, but what exactly happens in the constructor? Are there any cases when you could/should override the Activity constructor as well, or should you never touch it?

I'm assuming that the constructor should never be used because references to Activities aren't cleaned up entirely (thus hampering the garbage collector) and that onDestroy is there for that purpose. Is this correct?

link|improve this question

70% accept rate
feedback

3 Answers

up vote 5 down vote accepted

I can't think of any good reason to do anything in the constructor. You never construct an activity directly, so you can't use it to pass in parameters. Generally, just do things in onCreate.

link|improve this answer
feedback

I am now on a case that needs to override the constructor. In fact, I have some activities that have the same structure. So instead of creating many activities, I'll create one "Master" activity and the others will inherit this one. So I need to override the constructor of the child activity to be able to initialize some variables that will be used in the oncreate methods.

In two words, the constructor makes you simulate a "masteractivity" that can be reused by inheritance!

link|improve this answer
feedback

You need to override the Constructor when your activity will have custom params or you want to track calls from classes that inherited from.

link|improve this answer
Can you elaborate on this more? What you describe sounds interesting, but it is a little vague. Thanks! – mxrider Jul 22 '10 at 19:11
2  
Suppose you need to create a custom Activity class that takes 2 or more params. You just need to use the Constructor, you can't do that via the onCreate and extras. Does it help? – Pentium10 Jul 22 '10 at 19:27
But you don't explicitly create Activities, you create an Intent... – mxrider Jul 22 '10 at 20:54
It might that I need a private one. Suppose I want to create a custom component for example a customized contact picker. In order to have startActivityForResult I must include a private constructor in my custom component, even if that activity will never be launched and has no visibile elements, I just use the for result stuff of it. – Pentium10 Jul 23 '10 at 6:53
1  
I'm going to say, that doesn't make sense to me @Pentium, not without a code example. – Blundell Jan 14 at 0:01
feedback

Your Answer

 
or
required, but never shown

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