View的工作流程-measure过程

作者: Android天之骄子 | 来源:发表于2017-09-07 11:01 被阅读0次

    前言

    上一篇文章深入理解MeasureSpec我们分析了View的测量规格,根据MeasureSpec才能测量出View的大小,下面我们详细分析一下View的测量过程-measure过程,measure过程主要是测量出View的宽/高,其实View的测量分为两种情况,一是直接继承View的,通过OnMeasure()过程测量自己就可以了,还有一种是继承自ViewGroup的,除了测量自身外,还要遍历去测量所有子View,子View在依次执行测量过程。

    View的measure过程

    View的measure过程是从ViewRootImplperformMeasure()开始的,performMeasure() 里面会调用Viewmeasure()方法,而Viewmeasure()是用final修饰的,意味着子类不能重写该方法,但是在Viewmeasure()方法里面会去调用我们熟悉的onMeasure()方法,也就是开始了View的测量过程,下面我们看下ViewonMeasure()方法

    View#onMeasure()

         protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            setMeasuredDimension(getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec),
                    getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec));
        }
    

    我们发现这里面逻辑很简洁,就是调用setMeasuredDimension()方法,也就说当我们自定义一个View重写onMeasure()时,必须调用setMeasuredDimension()方法,这个方法会存储View的测量值,我们看下参数里的getDefaultSize()方法

    View#getDefaultSize()

        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;
        }
    

    这里逻辑也很好理解,我们只需要看MeasureSpec.AT_MOSTMeasureSpec.EXACTLY这两种情况,getDefaultSize()返回的大小就是测量后的大小,对于MeasureSpec.UNSPECIFIED这种模式,一般用于系统内部的测量过程,View的大小是系统的建议值,也就是getDefaultSize()的第一个参数getSuggestedMinimumHeight()的返回值,宽高同理

    View#getSuggestedMinimumWidth()

        protected int getSuggestedMinimumWidth() {
            return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth());
        }
    

    我们发现就是根据View是否设置背景进行判断的,如果没设置背景就返回mMinWidth,设置背景看就返回mMinWidth和背景宽度的最大值,mMinWidth对应于android:minWidth,如果不指定默认为0;我们再看下mBackground.getMinimumWidth()的含义,在View的全局变量里我们看到private Drawable mBackground;背景就是一个Drawable,再看下getMinimumWidth()

    Drawable#getMinimumWidth()

         * @return The minimum width suggested by this Drawable. If this Drawable
         *         doesn't have a suggested minimum width, 0 is returned.
         */
        public int getMinimumWidth() {
            final int intrinsicWidth = getIntrinsicWidth();
            return intrinsicWidth > 0 ? intrinsicWidth : 0;
        }
    

    我们看到注释没如果没设置背景就返回0,否则就返回背景的原始宽度,这个原始宽度又是什么呢,例如在xml中定义shape填充这种纯色,原始宽度就为0,如果设置BitmapDrawable为背景,原始宽度就不为0.通过以上可以看出getSuggestedMinimumWidth()返回的就是View在MeasureSpec.UNSPECIFIED这种模式下测量的大小。以上就是我们分析普通View的onMeasure过程。

    ViewGroup的measure过程

    ViewGroup是继承与View的,它是一个抽象类没有重写onMeasure方法,但是有一个measureChildren()方法,通过名字我们也能猜到就是测量子View的方法,下面我们详细看下

    ViewGroup#measureChildren()

        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);
                }
            }
        }
    

    这里就是通过遍历所有的子View并且不是GONE的情况下去执行measureChild()方法,这也很好的解释了为什么我在将某个View设置GONE后,不占用空间的原因,因为根本就没有去测量,我们再看下measureChild()方法

    ViewGroup#measureChild()

        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);
        }
    

    这里逻辑也很简单,首先取出子ViewLayoutParams,将父控件的MeasureSpecLayoutParams作为参数传到getChildMeasureSpec()方法中来创建子ViewMeasureSpecgetChildMeasureSpec()这个方法在上一篇深入理解MeasureSpec中已经详细的介绍,请自行查看!子View调用 measure方法,里面会执行View的onMeasure()方法,下面我们看下FrameLayout的测量过程。

    FrameLayout#onMeasure()

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int count = getChildCount();
        //判断当前布局的宽高是否为EXACTLY模式
        final boolean measureMatchParentChildren =
                MeasureSpec.getMode(widthMeasureSpec) != MeasureSpec.EXACTLY ||
                MeasureSpec.getMode(heightMeasureSpec) != MeasureSpec.EXACTLY;
        mMatchParentChildren.clear();
    
        int maxHeight = 0;
        int maxWidth = 0;
        int childState = 0;
    
         for (int i = 0; i < count; i++) {
            final View child = getChildAt(i);
            if (mMeasureAllChildren || child.getVisibility() != GONE) {
                //对每一个子View进行测量
                measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0);
                final LayoutParams lp = (LayoutParams) child.getLayoutParams();
                //寻找子View中宽高的最大者,因为如果FrameLayout是wrap_content属性
                //那么它的大小取决于子View中的最大者
                maxWidth = Math.max(maxWidth,
                        child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
                maxHeight = Math.max(maxHeight,
                        child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
                childState = combineMeasuredStates(childState, child.getMeasuredState());
                //如果FrameLayout非EXACTLY模式,添加到mMatchParentChildren中
                if (measureMatchParentChildren) {
                    if (lp.width == LayoutParams.MATCH_PARENT ||
                            lp.height == LayoutParams.MATCH_PARENT) {
                        mMatchParentChildren.add(child);
                    }
                }
            }
        }
    
       ...
    
        //保存测量结果
        setMeasuredDimension(resolveSizeAndState(maxWidth, widthMeasureSpec, childState),
                resolveSizeAndState(maxHeight, heightMeasureSpec,
                        childState << MEASURED_HEIGHT_STATE_SHIFT));
    
        //子View中设置为match_parent的个数
        count = mMatchParentChildren.size();
        if (count > 1) {
            for (int i = 0; i < count; i++) {
                final View child = mMatchParentChildren.get(i);
                final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
    
                //对FrameLayout的宽度规格设置,因为这会影响子View的测量
                final int childWidthMeasureSpec;
                if (lp.width == LayoutParams.MATCH_PARENT) {
                    final int width = Math.max(0, getMeasuredWidth()
                            - getPaddingLeftWithForeground() - getPaddingRightWithForeground()
                            - lp.leftMargin - lp.rightMargin);
                    childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(
                            width, MeasureSpec.EXACTLY);
                } else {
                    childWidthMeasureSpec = getChildMeasureSpec(widthMeasureSpec,
                            getPaddingLeftWithForeground() + getPaddingRightWithForeground() +
                            lp.leftMargin + lp.rightMargin,
                            lp.width);
                }
                ...
                child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
            }
        }
    }
    

    首先,FrameLayout根据它的MeasureSpec来对每一个不为GONE的子View进行测量,即调用measureChildWithMargin()方法,measureChildWithMargin()这个方法和measureChild()类似,多计算了边距,再对每一个子View进行测量,之后会寻找其中最大的宽高,那么FrameLayout的测量宽高会受到这个子View的最大宽高的影响(wrap_content模式),接着调用setMeasureDimension方法,把FrameLayout的测量宽高保存。最后则是特殊情况的处理,即当FrameLayout为wrap_content属性时,如果其子View是match_parent属性的话,则要重新设置FrameLayout的测量规格,然后重新对该部分View测量。

    总结

    上面我们已经分析了ViewMeasure过程,测量控件大小是父控件发起的
    父控件要测量子控件大小,需要重写onMeasure()方法,然后调用measureChildren()或者measureChildWithMargins()方法
    测量控件的步骤:
    父控件onMeasure->measureChildren/measureChildWithMargin->getChildMeasureSpec->
    子控件的measure->onMeasure->setMeasureDimension->
    父控件onMeasure结束调用setMeasureDimension最后保存自己的大小.

    推荐

    深入理解MeasureSpec

    相关文章

      网友评论

        本文标题:View的工作流程-measure过程

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