自定义View之measure、layout、draw

本文详细解析了Android中View的measure和layout方法的作用及使用场景。指出measure方法为final不可重写,通常需要重写onMeasure方法;layout方法一般不建议重写,有子View时应重写onLayout方法并调用layout方法来定位子View。
摘要由CSDN通过智能技术生成

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。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值