<com.test.www.BrushPreview android:id="@+id/brushview"
    android:layout_width="100dip" android:layout_height="100dip"
    android:layout_gravity="center" />

and this not:

<View class="com.test.www.BrushPreview" android:id="@+id/brushview"
    android:layout_width="100dip" android:layout_height="100dip"
    android:layout_gravity="center" />

Following the documentation http://developer.android.com/guide/topics/ui/custom-components.html#modifying it should work both ways! What am I doing wrong?

edit: lowercase view seems to work! i thought i tried that already...thanks! and furthermore, it´s very important to use this constructor in the view class:

public BrushPreview(Context context, AttributeSet attrs) 

otherwise it won´t get called.

link|improve this question

1  
What happens? An exception? It just doesn't appear? – Vicente Plata May 10 '11 at 7:06
you have any class file related this path com.test.www.BrushPreview..? – CapDroid May 10 '11 at 7:14
@CapDroid I wanna believe he does, since he says the 1st method works OK – Vicente Plata May 10 '11 at 7:15
no exceptions whatsoever, the view just isn´t drawn and no constructor is called... – stk May 10 '11 at 14:52
feedback

1 Answer

up vote 1 down vote accepted

You should use lowercase view in the xml for your custom layout:

<view class="com.test.www.BrushPreview" android:id="@+id/brushview"
    android:layout_width="100dip" android:layout_height="100dip"
    android:layout_gravity="center" />

(according to your link too), and it should work.

Otherwise it tries to create a android.view.View instance.

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.