When creating a custom view, I have noticed that many people seem to do it like this:

public MyView(Context context) {
  super(context);
  // this constructor used when programmatically creating view
  doAdditionalConstructorWork();
}

public MyView(Context context, AttributeSet attrs) {
  super(context, attrs);
  // this constructor used when creating view through XML
  doAdditionalConstructorWork();
}

private void doAdditionalConstructorWork() {
  // init variables etc.
}

My problem with this is that it stops me from making my variables final. Any reason not to do the following?

public MyView(Context context) {
  this(context, null);
  // this constructor used when programmatically creating view
}

public MyView(Context context, AttributeSet attrs) {
  this(context, attrs, 0);
  // this constructor used when creating view through XML
}

public MyView(Context context, AttributeSet attrs, int defStyle) {
  super(context, attrs, defStyle);
  // this constructor used where?
  // init variables
}

I've been able to create the view just fine through XML and through code, but I'm not sure if there are any drawbacks to this approach. Will this work in all cases?

There is another part to this question

link|improve this question

69% accept rate
Calling this just invokes another constructor of the current class. I think this is something you did not realize. Thus this(context, null); calls public MyView(Context context, AttributeSet attrs) { which in turn calls public MyView(Context context, AttributeSet attrs, int defStyle) {. This constructor invocations are not very common in java language, but i see no reason this will not work. – Boris Strandjev Feb 8 at 15:08
I realized that, I was just concerned about the parameters. :) – Micah Hainline Feb 8 at 15:16
feedback

3 Answers

up vote 1 down vote accepted

It is Ok.

When we look at the source of TextView.java.

They have used the same hierarchy.

So you are Okay with this approach.

link|improve this answer
feedback

Yup, that's a reasonable pattern to use so you don't have to repeat the custom work in every one of your constructors. And no, there don't appear to be any drawbacks to the method.

link|improve this answer
feedback

It purely depends on your requirement. Let us say if you want to use any methods in parent class without overriding their functionality in your custom view, then you need to use super() and instantiate parent class. If you dont need to invoke any methods in parent class all implementations are overridden in your custom view, then you don't need. Read A custom View Example section in this link.

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.