之前跟着坑爹的课本写了一个画图的功能,一直只能setContentView(new MyBitmapView(this)),不能再加其他东西了,之后用layout布局一直报这个错,后来一查是view的三个构造函数没有实现。
所以自定义view一定要
onDraw()
onMeasure()
public MyBitmapView(Context context)
public MyBitmapView(Context context,AttributeSet attrs)
public MyBitmapView(Context context,AttributeSet attrs,int defStyleAttr)
都要实现才行
所以看书有时候给的代码的延展性很差。。。。还要自己弄懂
原文链接:https://www.f2er.com/xml/296948.html