<com.test.www.BrushPreview android:id="@+id/brushview"
android:layout_width="100dip" android:layout_height="100dip"
android:layout_gravity="center" />
这不是:
<View class="com.test.www.BrushPreview" android:id="@+id/brushview"
android:layout_width="100dip" android:layout_height="100dip"
android:layout_gravity="center" />
按照文档http://developer.android.com/guide/topics/ui/custom-components.html#modifying它应该可以双向工作!我究竟做错了什么?
编辑:小写视图似乎工作!我想我已经试过了......谢谢!此外,在视图类中使用此构造函数非常重要:
public BrushPreview(Context context, AttributeSet attrs)
否则它不会被调用。