View绘制过程(二)measure

作者: 风风风筝 | 来源:发表于2016-07-01 15:08 被阅读444次

流程:

1) LinearLayout调用measure(),进入onMeasure()

2) 遍历child,调用measureChildWithMargins(),而这个方法其实还是调用child.measure()

3) 每次执行measureChildWithMargins()后,取得child的高度,mTotalLength累加(已使用空间)

4) 遍历完所有child后,调用setMeasuredDimension(),至此整个控件(包括所有子控件)measure完毕。

总结:

其实每个View(不是ViewGroup)都需要自己给出宽和高,原生的如TextView、Button等,都各自在onMeasure()中已经实现了。

相关文章

网友评论

    本文标题:View绘制过程(二)measure

    本文链接:https://www.haomeiwen.com/subject/dsnfjttx.html