标签:blog http ar art log sp htm on ef
每个view 中一定存在一个必调的方法, measure(int, int) ,它调用onMeasure(int, int)
onMeasure(widthMeasureSpec, heightMeasureSpec)的作用是什么?
测量view和它的content 得出 widthMeasureSpec heightMeasureSpec 并保存下来。
measure(widthMeasureSpec, heightMeasureSpec)的作用是什么?
通过 父布局提供的 widthMeasureSpec, widthMeasureSpec 来确定这个View 的 大小, 有多高,有多宽
具体的博文请点击链接http://blog.csdn.net/zhaoweixing1989/article/details/8139739
剖析measure()和onmeasure(),初探自定义容器布局
标签:blog http ar art log sp htm on ef
原文地址:http://my.oschina.net/u/1463920/blog/305835