从源码角度理解FrameLayout#onMeasure对child的measure调用次数

熟悉绘制流程的都知道,ViewGroup可以决定child的绘制时机以及调用次数。

今天我们就从最简单的FrameLayout开始学起,看一下它对子ViewonMeasure调用次数具体是多少。

简单起见,我们选择进入Activity的时机,在前面的blog进入Activity时,为何页面布局内View#onMeasure会被调用两次?提到过,进入页面时最少会走两遍绘制流程,我们需要观测下每次绘制流程中,child的onMeasure执行次数。

系列文章:
从源码角度理解FrameLayout#onMeasure对child的measure调用次数
从源码角度理解LinearLayout#onMeasure对child的measure调用次数
从源码角度理解RelativeLayout#onMeasure对child的measure调用次数
从源码角度理解ConstraintLayout#onMeasure对child的measure调用次数
ViewGroup在调用onMeasure时,会先测量父View,还是会先测量子View?

通过log观测现象

时机:进入页面;

xml布局:里面的自定义View都只是添加了log。




    

        

        

        

        

    


这里给FrameLayout添加了4个child,分别设置了不同的宽高。接着以FrameLayout的宽高为变量,分别设置match_parentwrap_content,我们观察下对应的onMeasure执行次数。

现实效果

宽高两两组合,一共有四种情况,具体效果如下表:

自身 view1(固定宽高) view2(均match_parent) view3(均match_parent) view4(均wrap_content)
match_parent match_parent M:2,L:1,D:1 M:2,L:1,D:1 M:2,L:1,D:1 M:2,L:1,D:1 M:2,L:1,D:1
wrap_content match_parent M:2,L:1,D:1 M:2,L:1,D:1 M:4,L:1,D:1(二次测量) M:4,L:1,D:1(二次测量) M:2,L:1,D:1
match_parent wrap_content M:2,L:1,D:1 M:2,L:1,D:1 M:4,L:1,D:1(二次测量) M:4,L:1,D:1(二次测量) M:2,L:1,D:1
wrap_content wrap_content M:2,L:1,D:1 M:2,L:1,D:1 M:4,L:1,D:1(二次测量) M:4,L:1,D:1(二次测量) M:2,L:1,D:1

说明:
MonMeasureLonLayoutDonDraw
M:2,L:1,D:1 表示onMeasure调用了2次,onLayout调用了1次,onDraw调用了一次。

我们知道,进入Activity时,最少会走两次onMeasure方法,具体请看进入Activity时,为何页面布局内View#onMeasure会被调用两次?。

观察表格中的内容,我们发现,当FrameLayout有一边是wrap_content,且child的宽高中有match_parent时,FrameLayout会对这种child多执行一次测量流程。也就是FrameLayout执行一次onMeasure,这种child要走两遍onMeasure

源码分析

具体是怎样的情况呢?我们看下源码:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int count = getChildCount();
    // FrameLayout的宽高如果有一个不是match_parent或者固定数值,measureMatchParentChildren的值就是true。
    final boolean measureMatchParentChildren =
            MeasureSpec.getMode(widthMeasureSpec) != MeasureSpec.EXACTLY ||
            MeasureSpec.getMode(heightMeasureSpec) != MeasureSpec.EXACTLY;
    mMatchParentChildren.clear();
    // 第一次测量,针对全部的child
    for (int i = 0; i < count; i++) {
        final View child = getChildAt(i);
        if (mMeasureAllChildren || child.getVisibility() != GONE) {
            // 调用child的measure方法,会触发child的onMeasure方法调用
            measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0);
            ...
            // 将child中,宽或高不少match_parent的,添加进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));
    
    // 第二次测量,主要是针对mMatchParentChildren容器中的数据。
    count = mMatchParentChildren.size();
    if (count > 1) { // mMatchParentChildren容器中的child个数大于1个
        for (int i = 0; i < count; i++) {
            final View child = mMatchParentChildren.get(i);
            ...
            // 调用child的measure方法,会触发child的onMeasure方法调用
            child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
        }
    }
}

源码如上所示,一共会对child进行两次测量。
第一遍测量所有child(GONE的会忽略掉);
第二遍测量部分child,这部分是有条件的,具体如下:

①FrameLayout中有一边的尺寸不是MeasureSpec.EXACTLY,也就是不是match_parent或者固定数值。
②子view中有宽或者高是LayoutParams.MATCH_PARENT的,也就是match_parent,将这些child添加
③满足条件②的子view超过2个。

此时满足条件②的所有子view会进行二次测量。

总结

综上所述,在FrameLayout一次测量流程中,FrameLayout的child最少会经历一次测量(必须的),最多是两次

FrameLayout子控件的测量顺序:

控件 onMeasure onLayout onDraw 备注
FrameLayout 先子view,然后是自身。 先子view,然后是自身。 先自身,然后子view。 child的顺序是正序

ps: 正序是指按照child添加的顺序。

参考资料

FrameLayout
进入Activity时,为何页面布局内View#onMeasure会被调用两次?

系列文章:
从源码角度理解FrameLayout#onMeasure对child的measure调用次数
从源码角度理解LinearLayout#onMeasure对child的measure调用次数
从源码角度理解RelativeLayout#onMeasure对child的measure调用次数
从源码角度理解ConstraintLayout#onMeasure对child的measure调用次数
ViewGroup在调用onMeasure时,会先测量父View,还是会先测量子View?

你可能感兴趣的:(从源码角度理解FrameLayout#onMeasure对child的measure调用次数)