自定义View测量模式解析

自定义View测量模式解析

自定义View的三种测量模式

1 MeasureSpec.EXACTLY

2 MeasureSpec.AT_MOST

3 MeasureSpec.UNSPECIFIED (用的很少 一般指ScrollView之类的控件)

以下是ViewGroup测量子View的代码

 protected void measureChildWithMargins(View child,
            int parentWidthMeasureSpec, int widthUsed,
            int parentHeightMeasureSpec, int heightUsed) {
        final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();

        final int childWidthMeasureSpec = getChildMeasureSpec(parentWidthMeasureSpec,
                mPaddingLeft + mPaddingRight + lp.leftMargin + lp.rightMargin
                        + widthUsed, lp.width);
        final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
                mPaddingTop + mPaddingBottom + lp.topMargin + lp.bottomMargin
                        + heightUsed, lp.height);

        child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
    }
参数childDimension即为child的布局参数MarginLayoutParams所决定的宽 lp.width 或 高 lp.height
 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:        
        // 当父布局自身的宽或高为 100dp 或 match_parent时 
            if (childDimension >= 0) {     子View测量宽或高大于0 
                resultSize = childDimension;   
                resultMode = MeasureSpec.EXACTLY;    子View测量的测量模式为MeasureSpec.EXACTLY
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
               子View希望测量宽或高是最大的  Child wants to be our size. So be it.
                // Child wants to be our size. So be it.

                resultSize = size;
                resultMode = MeasureSpec.EXACTLY;  子View测量的测量模式为MeasureSpec.EXACTLY
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
           // 子View希望测量宽或高只是自身的宽高,但是不能超过父View的宽或高,

                // 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:
        // 当父布局自身的宽或高为WRAP_CONTENT时 
            if (childDimension >= 0) {    
                //子View测量宽或高大于0
                // Child wants a specific size... so be it
                resultSize = childDimension;
                //子View测量的测量模式为MeasureSpec.EXACTLY
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
             //子View希望测量宽或高是最大的  但是最大也不能超过父View
                // Child wants to be our size, but our size is not fixed.
                // Constrain child to not be bigger than us.
                resultSize = size;
               // 子View测量的测量模式为MeasureSpec.AT_MOST
                resultMode = MeasureSpec.AT_MOST;
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
            //子View希望测量宽或高只是自身的宽高  但是最大也不能超过父View
                // Child wants to determine its own size. It can't be
                // bigger than us.
                resultSize = size;
                 // 子View测量的测量模式为MeasureSpec.AT_MOST
                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);
    }
模式和大小是由父布局和自己决定的
比方父布局是WRAP_CONTENT  就算子布局是match_parent,这个时候计算的测量模式还是 AT_MOST

比方父布局是match_parent  子布局是match_parent,这个时候计算的测量模式还是 EXACTLY
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值