View的工作流程是指measure、layout、draw三大流程,即策略、布局、重绘。
一.Measure过程
1.view的Measure过程
1.在onMeasure调用setMeasuredDimension( )设置View的宽和高.
2.在setMeasuredDimension()中调用getDefaultSize()获取View的宽和高.
3.在getDefaultSize()方法中又会调用到getSuggestedMinimumWidth()或者getSuggestedMinimumHeight()获取到View宽和高
View的onMeasure方法()
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec),
getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec));
}
setMeasuredDimension()方法会设置View的宽和高,getDefaultSize()返回View测量后的大小(注:View的最终大小是在layout阶段确定的)
public static int getDefaultSize(int size, int measureSpec) {
int result = size;
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
switch (specMode) {
case MeasureSpec.UNSPECIFIED:
result = size;
break;
case MeasureSpec.AT_MOST:
case MeasureSpec.EXACTLY:
result = specSize;
break;
}
return result;
}
getSuggestedMinimumWidth()方法
protected int getSuggestedMinimumWidth() {
return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth());
}
如果View没有设置背景,那么View的宽度为mMinWidth,而mMinWidth对应于android:minWidth这个属性所指的的值,如果这个属性不指定,那么mMinWidth默认值为0;如果设置了背景则返回android:minWidth和背景的最小宽度这两者中的最大值,getSuggestedMinimumHeight()实现的原理也类似。
解决在布局中使用wrap_content,效果是match_parent的问题。
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec , heightMeasureSpec);
int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
int widthSpceSize = MeasureSpec.getSize(widthMeasureSpec);
int heightSpecMode=MeasureSpec.getMode(heightMeasureSpec);
int heightSpceSize=MeasureSpec.getSize(heightMeasureSpec);
if(widthSpecMode==MeasureSpec.AT_MOST&&heightSpecMode==MeasureSpec.AT_MOST){
setMeasuredDimension(mWidth, mHeight);
}else if(widthSpecMode==MeasureSpec.AT_MOST){
setMeasuredDimension(mWidth, heightSpceSize);
}else if(heightSpecMode==MeasureSpec.AT_MOST){
setMeasuredDimension(widthSpceSize, mHeight);
}
}
在上面的代码中,我们只需要给View指定一个默认的宽高(mWidth, mHeight),并在wrap_content时设置此宽/高即可。对于非wrap_content的情形,使用系统的测量值就行,指定一个默认的宽高(mWidth, mHeight)根据需要自行指定。
2.viewGroup的Measure过程
对于ViewGroup来说,除了完成自己的Measure过程,还回遍历去调用所有子元素的measure方法,各个子元素在递归的执行这个过程。
ViewGroup是一个抽象类,没有重写View的onMeasure方法,但是它提供了一个measureChildren方法。这是因为不同的ViewGroup子类有不同的布局特性,导致他们的测量细节各不相同,比如LinearLayout和RelativeLayout,因此ViewGroup没办法同一实现onMeasure方法。 measureChildren方法的流程:
取出子View的LayoutParams
通过getChildMeasureSpec方法来创建子元素的MeasureSpec
将MeasureSpec直接传递给View的measure方法来进行测量
protected void measureChildren(int widthMeasureSpec, int heightMeasureSpec) {
final int size = mChildrenCount;
final View[] children = mChildren;
for (int i = 0; i < size; ++i) {
final View child = children[i];
if ((child.mViewFlags & VISIBILITY_MASK) != GONE) {
measureChild(child, widthMeasureSpec, heightMeasureSpec);
}
}
}
protected void measureChild(View child, int parentWidthMeasureSpec,
int parentHeightMeasureSpec) {
final LayoutParams lp = child.getLayoutParams();
final int childWidthMeasureSpec = getChildMeasureSpec(parentWidthMeasureSpec,
mPaddingLeft + mPaddingRight, lp.width);
final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
mPaddingTop + mPaddingBottom, lp.height);
child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
}
可以查看一下LinearLayout 的onMeasure方法
Measure完成以后就可以在onLayout()通过getMeasuredWidth/Height获取到View的测量宽高,
二.Layout过程
Layout的作用是ViewGroup用来确定子元素的位置,当ViewGroup位置确定以后,他就会在onLayout中遍历所有子元素并调用其layout过程,在layout方法中onLayout方法又会被调用。layout方法确定view本身的位置,onlayout方法则确定所有子元素的位置。
View的layout源码
public void layout(int l, int t, int r, int b) {
if ((mPrivateFlags3 & PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT) != 0) {
onMeasure(mOldWidthMeasureSpec, mOldHeightMeasureSpec);
mPrivateFlags3 &= ~PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT;
}
int oldL = mLeft;
int oldT = mTop;
int oldB = mBottom;
int oldR = mRight;
boolean changed = isLayoutModeOptical(mParent) ?
setOpticalFrame(l, t, r, b) : setFrame(l, t, r, b);
if (changed || (mPrivateFlags & PFLAG_LAYOUT_REQUIRED) == PFLAG_LAYOUT_REQUIRED) {
onLayout(changed, l, t, r, b);
mPrivateFlags &= ~PFLAG_LAYOUT_REQUIRED;
ListenerInfo li = mListenerInfo;
if (li != null && li.mOnLayoutChangeListeners != null) {
ArrayList<OnLayoutChangeListener> listenersCopy =
(ArrayList<OnLayoutChangeListener>)li.mOnLayoutChangeListeners.clone();
int numListeners = listenersCopy.size();
for (int i = 0; i < numListeners; ++i) {
listenersCopy.get(i).onLayoutChange(this, l, t, r, b, oldL, oldT, oldR, oldB);
}
}
}
mPrivateFlags &= ~PFLAG_FORCE_LAYOUT;
mPrivateFlags3 |= PFLAG3_IS_LAID_OUT;
}
layout方法的大致流程:
1.通过setFrame方法来设定View的四个顶点的位置,既初始化mLeft、mTop、mBottom、mRight这四个值,View的四个顶点位置确认了,那么View在父容器中的位置也就确认了。
2.调用onLayout方法,父容器确定子元素的位置,(同onMeasure,View 和ViewGroup 均没有真正实现onLayout,而是放在具体的子类如Linearlayout 中去实现)
View的测量宽/高和最终宽/高的区别?
这个问题可以具体为:View的getMeasuredWidth和getWidth;View的getMeasuredHeight和getHeight有什么区别
public final int getWidth() {
return mRight - mLeft;
}
public final int getHeight() {
return mBottom - mTop;
}
在日常开发中,我们认为这两个值相等。
三.draw过程
View的绘制过程遵循如下几步:
(1)绘制背景drawBackground(canvas)
(2)绘制自己onDraw
(3)绘制childrendispatchDraw遍历所有子View的draw方法
(4)绘制装饰onDrawScrollBars