I'm learning about using Custom Views from the following:

http://developer.android.com/guide/topics/ui/custom-components.html#modifying

The description says:

Class Initialization As always, the super is called first. Furthermore, this is not a default constructor, but a parameterized one. The EditText is created with these parameters when it is inflated from an XML layout file, thus, our constructor needs to both take them and pass them to the superclass constructor as well.

Is there a better description? I've been trying to figure out what the constructor(s) should look like and I've come up with 4 possible choices (see example at end of post). I'm not sure what these 4 choices do (or don't do), why I should implement them, or what the parameters mean. Is there a description of these?

Thanks.

Mitch

public MyCustomView() { super(); }

public MyCustomView(Context context) { super(context); }

public MyCustomView(Context context, AttributeSet attrs) { super(context, attrs); }

public MyCustomView(Context context, AttributeSet attrs, Map params) { super(context, attrs, params); }

link|improve this question

37% accept rate
feedback

1 Answer

up vote 12 down vote accepted

You don't need the first one, as that just won't work.

The third one will mean your custom View will be usable from XML layout files. If you don't care about that, you don't need it.

The fourth one is just wrong, AFAIK. There is no View constructor that take a Map as the third parameter. There is one that takes an int as the third parameter, used to override the default style for the widget.

I tend to use the this() syntax to combine these:

public ColorMixer(Context context) {
    this(context, null);
}

public ColorMixer(Context context, AttributeSet attrs) {
    this(context, attrs, 0);
}

public ColorMixer(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    // real work here
}

You can see the rest of this code in this book example.

link|improve this answer
super(context, attrs) and super(context, attrs, 0) works differentially for me. First one is ok, but second removes original style from a view. Is it a bug in newer versions of Android? – Brutall Jan 26 at 14:56
Yes, my this() approach had flaws. Just do a plain chain to the superclass (e.g., super(context, attrs)) and put a call to a common private method (e.g., init();) in each constructor. See github.com/commonsguy/cwac-colormixer/blob/master/src/com/… for an example. – CommonsWare Jan 26 at 15:01
Yes, I did exactly the same thing, but called this(context, null) in the first constructor. One flaw is that you have to initialize final fields in both constructors - you can't do that in init() method. – Brutall Jan 26 at 16:19
@Brutall: True, though I tend to initialize final data members directly in the data member declaration, where possible. – CommonsWare Jan 26 at 17:05
Is it possible an app would crash on linking the constructors? Not always, but I do get a crashreport of a galaxy s2, and I think it is related to this – vanleeuwenbram May 11 at 6:27
feedback

Your Answer

 
or
required, but never shown

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