1.measure
public final void measure(int widthMeasureSpec, int heightMeasureSpec)
此方法为final,只能重写onMeasure方法
2.layout
public void layout(int l, int t, int r, int b)
该方法有如下注释:
Derived classes should not override this method.
Derived classes with children should override
onLayout. In that method, they should
call layout on each of their children
意思是:View的派生类一般不需要重写layout方法。有子控件的View的派生类应该重写onLayout()方法,并在onLayout()方法中调用layout()方法来确定子View的位置。
其实,这也符合我们平时自定义View时如果继承ViewGroup时的情况,我们一般都会重写onLayout()方法,然后通过layout()方法确定子View的具体位置。
当我们自定义的View如果继承View类的话,一般就不需要重写onLayout()方法了哦,毕竟没有子View。