View测量流程

View测量流程简介

ViewGroup继承自View,在View的测量方法measure方法中,调用了onMeasure,onMeasure是View具体实现测量过程的方法,也是自定义View时需要自己去实现的方法。
对于一个activity来说测量流程是子上而下的:
1.ViewRootImpl 调用performMeasure 测量Activity 顶层View DecorView,决定其测量模式。
2.ViewGroup在onMeasure中调用measureChildrenchild.measure测量出子View的大小。
3.View在onMeasure中实现对自身大小的测量,并调用setMeasuredDimension设置具体宽高尺寸。

MeasureSpec

MeasureSpec是View测量中很重要的一个类,由mode和size两部分组成。mode表示父View对其子View大小的约束,size则是具体尺寸。mode+size对应最终MeasureSpec的值。

mode 对子View的约束
MeasureSpec.UNSPECIFIED 对子View大小无任何约束,子View可为任意大小
MeasureSpec.EXACTLY 确切的大小,如:100dp或者march_parent
MeasureSpec.AT_MOST 子View可以达到其想要达到的大小,如:wrap_content

MeasureSpec.makeMeasureSpec(size,mode)可以得到int类型的MeasureSpec的值,在测量过程中measure onMeasure都是通过此值来进行View的测量。

View测量起点ViewRoot

ViewRoot是View绘制的起点,实现类ViewRootImpl中会在performTraversals中调用performMeasureperformLayoutperformDraw分别开始View的测量,布局,绘制。

 int childWidthMeasureSpec = getRootMeasureSpec(mWidth, lp.width);
 int childHeightMeasureSpec = getRootMeasureSpec(mHeight, lp.height);
 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);

在performTraversals调用performMeasure时,传入了两个参数,所测量View(此处为DecorView)的宽高MeasureSpec,而这两个参数都是有getRootMeasureSpec方法返回,在getRootMeasureSpec接受了两个参数,windowSize(一般为屏幕尺寸),rootDimension(DecorView的宽高属性)

 private static int getRootMeasureSpec(int windowSize, int rootDimension) {
        int measureSpec;
        switch (rootDimension) {

        case ViewGroup.LayoutParams.MATCH_PARENT:
            // Window can't resize. Force root view to be windowSize.
            measureSpec = MeasureSpec.makeMeasureSpec(windowSize, MeasureSpec.EXACTLY);
            break;
        case ViewGroup.LayoutParams.WRAP_CONTENT:
            // Window can resize. Set max size for root view.
            measureSpec = MeasureSpec.makeMeasureSpec(windowSize, MeasureSpec.AT_MOST);
            break;
        default:
            // Window wants to be an exact size. Force root view to be that size.
            measureSpec = MeasureSpec.makeMeasureSpec(rootDimension, MeasureSpec.EXACTLY);
            break;
        }
        return measureSpec;
    }

在getRootMeasureSpec方法中可以看出:
1.当DecorView的宽或者高为MATCH_PARENT的时候,DecorView的测量模式为EXACTLY,size为window的size。
2.当DecorView的宽或者高为WRAP_CONTENT的时候,DecorView的测量模式为AT_MOST,size为window的size。
3.其他情况,即宽高为指定大小的值,如100dp的时候,DecorView的测量模式为EXACTLY,size为具体的值。

private void performMeasure(int childWidthMeasureSpec, int childHeightMeasureSpec) {
        if (mView == null) {
            return;
        }
        Trace.traceBegin(Trace.TRACE_TAG_VIEW, "measure");
        try {
            mView.measure(childWidthMeasureSpec, childHeightMeasureSpec);
        } finally {
            Trace.traceEnd(Trace.TRACE_TAG_VIEW);
        }
    }

在performMeasure方法中调用了mView.measure,此处的mView就是DecorView,DecorView继承自FrameLayout,则具体测量任务交给ViewGroup处理。

ViewGroup测量

ViewGroup继承自View,但是并没有具体onMeasure实现,因为ViewGroup中是可以包含View的,当ViewGroup的款或者高为WRAP_CONTENT的时候,对于不同的ViewGroup采用的方法不同,如RelativeLayout和LinearLayout。不过VIewGroup提供了默认实现measureChildrenmeasureChildmeasureChildWithMargins来测量子VIew的大小。

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

在measureChildren中遍历了ViewGroup中的View,并调用measureChild对非GONE的View进行测量。

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

measureChild中则是先获取了子View的Width和heigth,然后调用了子View的measure方法。

public static int getChildMeasureSpec(int spec, int padding, int childDimension) {
        int specMode = MeasureSpec.getMode(spec);
        int specSize = MeasureSpec.getSize(spec);

        int size = Math.max(0, specSize - padding);

        int resultSize = 0;
        int resultMode = 0;

        switch (specMode) {
        // Parent has imposed an exact size on us
        case MeasureSpec.EXACTLY:
            if (childDimension >= 0) {
                resultSize = childDimension;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
                // Child wants to be our size. So be it.
                resultSize = size;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
                // Child wants to determine its own size. It can't be
                // bigger than us.
                resultSize = size;
                resultMode = MeasureSpec.AT_MOST;
            }
            break;

        // Parent has imposed a maximum size on us
        case MeasureSpec.AT_MOST:
            if (childDimension >= 0) {
                // Child wants a specific size... so be it
                resultSize = childDimension;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
                // Child wants to be our size, but our size is not fixed.
                // Constrain child to not be bigger than us.
                resultSize = size;
                resultMode = MeasureSpec.AT_MOST;
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
                // Child wants to determine its own size. It can't be
                // bigger than us.
                resultSize = size;
                resultMode = MeasureSpec.AT_MOST;
            }
            break;

        // Parent asked to see how big we want to be
        case MeasureSpec.UNSPECIFIED:
            if (childDimension >= 0) {
                // Child wants a specific size... let him have it
                resultSize = childDimension;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
                // Child wants to be our size... find out how big it should
                // be
                resultSize = View.sUseZeroUnspecifiedMeasureSpec ? 0 : size;
                resultMode = MeasureSpec.UNSPECIFIED;
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
                // Child wants to determine its own size.... find out how
                // big it should be
                resultSize = View.sUseZeroUnspecifiedMeasureSpec ? 0 : size;
                resultMode = MeasureSpec.UNSPECIFIED;
            }
            break;
        }
        //noinspection ResourceType
        return MeasureSpec.makeMeasureSpec(resultSize, resultMode);
    }

在getChildMeasureSpec方法中会根据ViewGroup的测量模式和子view的具体宽高来决定子View的MeasureSpec。具体对应关系如下


View测量

View是测绘的最底层,一般自定义View的时候都需要重写onMeasure方法,当不去重写且View设置了WRAP_CONTENT的时候,在实际展示效果中却是填充了整个该View所在的ViewGroup。查看View onMeasure的默认实现方法可以知道原因。

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

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

View的onMeasure中直接根据ViewGroup传递过来的width和heigth获取了默认的宽高并设置给View。

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

在getDefaultSize中可以看到当View的测量模式为UNSPECIFIED的时候返回的是View设置的最小尺寸,而当测量模式为AT_MOST和EXACTLY的时候,返回的都是ViewGroup传过来的尺寸。根据源码和ViewGroup View测量模式对应关系可知道,出现上述问题的情况有3中情况
1.ViewGroup的测量模式为EXACTLY,View的宽或者高为wrap_content。
2.ViewGroup的测量模式为AT_MOST,View的宽或者高为match_parent。
3.ViewGroup的测量模式为AT_MOST,View的宽或者高为wrap_content。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,332评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,508评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,812评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,607评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,728评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,919评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,071评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,802评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,256评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,576评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,712评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,389评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,032评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,026评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,473评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,606评论 2 350