Android进阶之深入理解View的测量(Measure)流程机制

移动开发 Android
View 的工作原理中最重要的就是测量、布局、绘制三大过程,而其中测量是最复杂的; 那么我们就来介绍下View 的测量过程;

[[424218]]

前言

View 的工作原理中最重要的就是测量、布局、绘制三大过程,而其中测量是最复杂的;

那么我们就来介绍下View 的测量过程;

一、MeasureSpec

测量自身的大小的时候,会执行measure(int widthMeasureSpec, int heightMeasureSpec)方法。注意方法中两个参数,它们其实是一个int 类型的MeasureSpec;

1、specMode

测量模式分为三种:

  • UNSPECIFIED模式:本质就是不限制模式,父视图不对子View进行任何约束,View想要多大要多大,想要多长要多长;
  • EXACTLY模式:该模式其实对应的场景就是match_parent或者是一个具体的数据(50dp或80px),父视图为子View指定一个确切的大小,无论子View的值设置多大,都不能超出父视图的范围;
  • AT_MOST模式:这个模式对应的场景就是wrap_content,其内容就是父视图给子View设置一个最大尺寸,子View只要不超过这个尺寸即可;

2、MeasureSpec

View的MeasureSpec值是根据子View的布局参数(LayoutParams)和父容器的MeasureSpec至计算而来的,其具体逻辑封装在了getChildMeasureSpec()方法中

  1. public static int getChildMeasureSpec( 
  2. int spec, int padding, int childDimension) { 
  3. //1、获取parent的specMode 
  4.   int specMode = MeasureSpec.getMode(spec); 
  5. //2、获取parent的specSize 
  6.   int specSize = MeasureSpec.getSize(spec); 
  7. //3、size=剩余的可用大小 
  8.   int size = Math.max(0, specSize - padding); 
  9.   int resultSize = 0; 
  10.   int resultMode = 0; 
  11.   //4、通过switch语句判断parent的集中mode,分别处理 
  12.   switch (specMode) { 
  13.   // 5、parent为MeasureSpec.EXACTLY时 
  14.   case MeasureSpec.EXACTLY: 
  15.       if (childDimension >= 0) { 
  16.     //5.1、当childDimension大于0时,表示child的大小是 
  17.         //明确指出的,如layout_width= "100dp"
  18.           // 此时child的大小= childDimension, 
  19.           resultSize = childDimension; 
  20.           //child的测量模式= MeasureSpec.EXACTLY 
  21.           resultMode = MeasureSpec.EXACTLY; 
  22.       } else if (childDimension == LayoutParams.MATCH_PARENT) { 
  23.     //5.2、此时为LayoutParams.MATCH_PARENT 
  24.     //也就是    android:layout_width="match_parent" 
  25.       //因为parent的大小是明确的,child要匹配parent的大小 
  26.       //那么我们就直接让child=parent的大小就好 
  27.           resultSize = size
  28.         //同样,child的测量模式= MeasureSpec.EXACTLY 
  29.           resultMode = MeasureSpec.EXACTLY; 
  30.       } else if (childDimension == LayoutParams.WRAP_CONTENT) { 
  31.   //5.3、此时为LayoutParams.WRAP_CONTENT 
  32.     //也就是   android:layout_width="wrap_content"   
  33.     // 这个模式需要特别对待,child说我要的大小刚好够放 
  34.     //需要展示的内容就好,而此时我们并不知道child的内容 
  35.     //需要多大的地方,暂时先把parent的size给他 
  36.           resultSize = size
  37.       //自然,child的mode就是MeasureSpec.AT_MOST的了 
  38.           resultMode = MeasureSpec.AT_MOST; 
  39.       } 
  40.       break; 
  41.   // 5、parent为AT_MOST,此时child最大不能超过parent 
  42.   case MeasureSpec.AT_MOST: 
  43.       if (childDimension >= 0) { 
  44.           //同样child大小明确时, 
  45.           //大小直接时指定的childDimension 
  46.           resultSize = childDimension; 
  47.           resultMode = MeasureSpec.EXACTLY; 
  48.       } else if (childDimension == LayoutParams.MATCH_PARENT) { 
  49.           // child要跟parent一样大,resultSize=可用大小 
  50.           resultSize = size
  51.         //因为parent是AT_MOST,child的大小也还是未定的, 
  52.         //所以也是MeasureSpec.AT_MOST 
  53.           resultMode = MeasureSpec.AT_MOST; 
  54.       } else if (childDimension == LayoutParams.WRAP_CONTENT) { 
  55.           //又是特殊情况,先给child可用的大小 
  56.           resultSize = size
  57.           resultMode = MeasureSpec.AT_MOST; 
  58.       } 
  59.       break; 
  60.   // 这种模式是很少用的,我们也看下吧 
  61.   case MeasureSpec.UNSPECIFIED: 
  62.       if (childDimension >= 0) { 
  63.           // 与前面同样的处理 
  64.           resultSize = childDimension; 
  65.           resultMode = MeasureSpec.EXACTLY; 
  66.       } else if (childDimension == LayoutParams.MATCH_PARENT) { 
  67.           // Child wants to be our size... find out how big it should 
  68.           // be 
  69.           resultSize = View.sUseZeroUnspecifiedMeasureSpec ? 0 : size
  70.           resultMode = MeasureSpec.UNSPECIFIED; 
  71.       } else if (childDimension == LayoutParams.WRAP_CONTENT) { 
  72.           // Child wants to determine its own size.... find out how 
  73.           // big it should be 
  74.           resultSize = View.sUseZeroUnspecifiedMeasureSpec ? 0 : size
  75.           resultMode = MeasureSpec.UNSPECIFIED; 
  76.       } 
  77.       break; 
  78.   } 
  79.   //通过传入resultSize和resultMode生成一个MeasureSpec.返回 
  80.   return MeasureSpec.makeMeasureSpec(resultSize, resultMode); 
  • ①当子View采用具体数值(dp / px)时:无论父容器的测量模式是什么,子View的测量模式都是EXACTLY且大小等于设置的具体数值;
  • ②当子View采用match_parent时:子View的测量模式与父容器的测量模式一致;若测量模式为EXACTLY,则子View的大小为父容器的剩余空间;若测量模式为AT_MOST,则子View的大小不超过父容器的剩余空间;
  • ③当子View采用wrap_parent时:如果父容器测量模式为UNSPECIFIED,子View也为UNSPECIFIED,否则子View为AT_MOST且大小不超过父容器的剩余空间;

二、view测量过程

1、performMeasure()

加载好系统布局资源后,会触发ViewRootImpl的performTraversals()方法,该方法内容会开始执行测量、布局和绘制的工作,我们来看这个方法的源码关键部分:

  1. private void performTraversals() { 
  2.       ... 
  3.   if (!mStopped) { 
  4.     //获取顶层布局的childWidthMeasureSpec 
  5.       int childWidthMeasureSpec = getRootMeasureSpec(mWidth, lp.width);   
  6.     //获取顶层布局的childHeightMeasureSpec 
  7.       int childHeightMeasureSpec = getRootMeasureSpec(mHeight, lp.height); 
  8.       //测量开始测量 
  9.       performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);        
  10.       } 
  11.   }  
  12.   if (didLayout) { 
  13.     //执行布局方法 
  14.       performLayout(lp, desiredWindowWidth, desiredWindowHeight); 
  15.       ... 
  16.   } 
  17.   if (!cancelDraw && !newSurface) { 
  18.    ... 
  19.     //开始绘制了哦 
  20.           performDraw(); 
  21.       } 
  22.   }  

整个方法内部其实就是做了一些基础的判断后,再顺序的调用测量、布局和绘制的相关方法,从而完成自定义View的整个工作流程;

performTraversals方法,使用的是getRootMeasureSpec方法来获取子View的MeasureSpec;

整个Activity的顶层View其实就是一个DecorView,所以这里获取的其实是DeorView的MeasureSpec,然后将其传入performMeasure方法中去开始测量,现在看看PerformMeasure方法:

  1. private void performMeasure(int childWidthMeasureSpec,  
  2.   int childHeightMeasureSpec) { 
  3. Trace.traceBegin(Trace.TRACE_TAG_VIEW, "measure"); 
  4. try { 
  5.   //mView其实就是我们的顶层DecorView,从DecorView开始测量 
  6.   mView.measure(childWidthMeasureSpec, childHeightMeasureSpec); 
  7. } finally { 
  8.   Trace.traceEnd(Trace.TRACE_TAG_VIEW); 

2、measure()

源码中找到了measure方法

  1. public final void measure(int widthMeasureSpec, int heightMeasureSpec) { 
  2.         boolean optical = isLayoutModeOptical(this); 
  3.         if (optical != isLayoutModeOptical(mParent)) { 
  4.             Insets insets = getOpticalInsets(); 
  5.             int oWidth  = insets.left + insets.right
  6.             int oHeight = insets.top  + insets.bottom; 
  7.             widthMeasureSpec  = MeasureSpec.adjust(widthMeasureSpec,  optical ? -oWidth  : oWidth); 
  8.             heightMeasureSpec = MeasureSpec.adjust(heightMeasureSpec, optical ? -oHeight : oHeight); 
  9.         } 
  10.         // Suppress sign extension for the low bytes 
  11.         long key = (long) widthMeasureSpec << 32 | (long) heightMeasureSpec & 0xffffffffL; 
  12.         if (mMeasureCache == null) mMeasureCache = new LongSparseLongArray(2); 
  13.         final boolean forceLayout = (mPrivateFlags & PFLAG_FORCE_LAYOUT) == PFLAG_FORCE_LAYOUT; 
  14.         // Optimize layout by avoiding an extra EXACTLY pass when the view is 
  15.         // already measured as the correct sizeIn API 23 and below, this 
  16.         // extra pass is required to make LinearLayout re-distribute weight. 
  17.         final boolean specChanged = widthMeasureSpec != mOldWidthMeasureSpec 
  18.                 || heightMeasureSpec != mOldHeightMeasureSpec; 
  19.         final boolean isSpecExactly = MeasureSpec.getMode(widthMeasureSpec) == MeasureSpec.EXACTLY 
  20.                 && MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.EXACTLY; 
  21.         final boolean matchesSpecSize = getMeasuredWidth() == MeasureSpec.getSize(widthMeasureSpec) 
  22.                 && getMeasuredHeight() == MeasureSpec.getSize(heightMeasureSpec); 
  23.         final boolean needsLayout = specChanged 
  24.                 && (sAlwaysRemeasureExactly || !isSpecExactly || !matchesSpecSize); 
  25.         if (forceLayout || needsLayout) { 
  26.             // first clears the measured dimension flag 
  27.             mPrivateFlags &= ~PFLAG_MEASURED_DIMENSION_SET; 
  28.             resolveRtlPropertiesIfNeeded(); 
  29.             int cacheIndex = forceLayout ? -1 : mMeasureCache.indexOfKey(key); 
  30.             if (cacheIndex < 0 || sIgnoreMeasureCache) { 
  31.                 // measure ourselves, this should set the measured dimension flag back 
  32.                 onMeasure(widthMeasureSpec, heightMeasureSpec); 
  33.                 mPrivateFlags3 &= ~PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT; 
  34.             } else { 
  35.                 long value = mMeasureCache.valueAt(cacheIndex); 
  36.                 // Casting a long to int drops the high 32 bits, no mask needed 
  37.                 setMeasuredDimensionRaw((int) (value >> 32), (int) value); 
  38.                 mPrivateFlags3 |= PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT; 
  39.             } 
  40.             // flag not set, setMeasuredDimension() was not invoked, we raise 
  41.             // an exception to warn the developer 
  42.             if ((mPrivateFlags & PFLAG_MEASURED_DIMENSION_SET) != PFLAG_MEASURED_DIMENSION_SET) { 
  43.                 throw new IllegalStateException("View with id " + getId() + ": " 
  44.                         + getClass().getName() + "#onMeasure() did not set the" 
  45.                         + " measured dimension by calling" 
  46.                         + " setMeasuredDimension()"); 
  47.             } 
  48.             mPrivateFlags |= PFLAG_LAYOUT_REQUIRED; 
  49.         } 
  50.         mOldWidthMeasureSpec = widthMeasureSpec; 
  51.         mOldHeightMeasureSpec = heightMeasureSpec; 
  52.         mMeasureCache.put(key, ((long) mMeasuredWidth) << 32 | 
  53.                 (long) mMeasuredHeight & 0xffffffffL); // suppress sign extension 
  54.     } 

View的测量是View.onMeasure而ViewGroup的测量则是XXLayout.onMeasure,这两种onMeasure方法的实现是不同的

3、View.onMeasure()

获取一个建议最小值;

调用getDefaultSize方法定义对View尺寸的测量逻辑;

调用setMeasureDimension()储存测量后的View宽/高;

  1. protected void onMeasure(int widthMeasureSpec,  
  2. int heightMeasureSpec) { 
  3.  setMeasuredDimension( 
  4.     getDefaultSize(getSuggestedMinimumWidth(), 
  5.                                 widthMeasureSpec), 
  6.     getDefaultSize(getSuggestedMinimumHeight(), 
  7.                                  heightMeasureSpec)); 
  8. getSuggestedMinimumWidth() 
  9. protected int getSuggestedMinimumWidth() { 
  10.   return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth()); 
  11.   } 
  12.  前View是否有背景?没有就返回android:minWidth设置的值:有就返回android:minWidth和mBackground.getMinimumWidth()中较大的那个值; 
  13. public int getMinimumWidth() { 
  14.     final int intrinsicWidth = getIntrinsicWidth(); 
  15.     //返回背景图Drawable的原始宽度 
  16.     return intrinsicWidth > 0 ? intrinsicWidth :0 ; 

getIntrinsicWidth()获取的是背景图的原始宽度,背景图是BitmapDrawable则有原始宽度,在没有原始宽度的情况下则返回0;

4、getDefaultSize()

  1. public static int getDefaultSize(int sizeint measureSpec) { 
  2.   int result = size
  3.  //1、获得MeasureSpec的mode 
  4.   int specMode = MeasureSpec.getMode(measureSpec); 
  5.  //2、获得MeasureSpec的specSize 
  6.   int specSize = MeasureSpec.getSize(measureSpec); 
  7.   switch (specMode) { 
  8.   case MeasureSpec.UNSPECIFIED: 
  9.     //这个我们先不看他 
  10.       result = size
  11.       break; 
  12.   case MeasureSpec.AT_MOST: 
  13.   case MeasureSpec.EXACTLY: 
  14.   //3、可以看到,最终返回的size就是我们MeasureSpec中测量得到的size 
  15.       result = specSize; 
  16.       break; 
  17.   } 
  18.   return result; 

测量模式是AT_MOST还是EXACTLY,最终返回的Size是一样的;

5、setMeasureDimension

该方法是储存测量后的View的宽和高的,在自定义View的时候,我们自己重写的onMeasure方法最后一定要调用这个方法,否则会报错

  1. protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { 
  2.     //1、判断是否使用视觉边界布局 
  3.   boolean optical = isLayoutModeOptical(this); 
  4.   //2、判断view和parentView使用的视觉边界布局是否一致 
  5.   if (optical != isLayoutModeOptical(mParent)) { 
  6.       //不一致时要做一些边界的处理 
  7.       Insets insets = getOpticalInsets(); 
  8.       int opticalWidth  = insets.left + insets.right
  9.       int opticalHeight = insets.top  + insets.bottom; 
  10.       measuredWidth  += optical ? opticalWidth  : -opticalWidth; 
  11.       measuredHeight += optical ? opticalHeight : -opticalHeight; 
  12.   } 
  13.   //3、重点来了,经过过滤之后调用了setMeasuredDimensionRaw方法,看来应该是这个方法设置我们的view的大小 
  14.   setMeasuredDimensionRaw(measuredWidth, measuredHeight); 
  15. setMeasureDimensionRaw方法: 
  16. private void setMeasuredDimensionRaw(int measuredWidth, int measuredHeight) { 
  17.   //最终将测量好的大小存储到mMeasuredWidth和mMeasuredHeight上,所以在测量之后 
  18.   //我们可以通过调用getMeasuredWidth获得测量的宽、getMeasuredHeight获得高 
  19.   mMeasuredWidth = measuredWidth; 
  20.   mMeasuredHeight = measuredHeight; 
  21.   mPrivateFlags |= PFLAG_MEASURED_DIMENSION_SET; 

以上就是View的测量过程,其顺序为:

performTraversals->performMeasure->measure->onMeasure-> setMeasuredDimension-> setMeasuredDimensionRaw,由setMeasuredDimensionRaw最终保存测量的数据

三、ViewGroup的测量过程详解

1、measureChildren()

作用就是遍历子View并调用measureChild()进行下一步测量

  1. protected void measureChildren(int widthMeasureSpec, int heightMeasureSpec) { 
  2. //参数说明:父视图的测量规格(MeasureSpec) 
  3.         final int size = mChildrenCount; 
  4.         final View[] children = mChildren; 
  5.         //遍历所有的子view 
  6.         for (int i = 0; i < size; ++i) { 
  7.             final View child = children[i]; 
  8.         //如果View的状态不是GONE就调用measureChild()去进行下一步的测量 
  9.             if ((child.mViewFlags & VISIBILITY_MASK) != GONE) { 
  10.                 measureChild(child, widthMeasureSpec, heightMeasureSpec); 
  11.             } 
  12.         } 
  13.     } 

2、measureChild()

作用就是计算单个子View的MeasureSpec,调用子View的measure进行每个子View最后的宽、高的测量

  1. protected void measureChild(View child, int parentWidthMeasureSpec, 
  2.             int parentHeightMeasureSpec) { 
  3.         // 获取子视图的布局参数 
  4.         final LayoutParams lp = child.getLayoutParams(); 
  5.         // 调用getChildMeasureSpec(),根据父视图的MeasureSpec & 布局参数LayoutParams,计算单个子View的MeasureSpec 
  6.          // getChildMeasureSpec()请回看上面的解析 
  7.          // 获取 ChildView 的 widthMeasureSpec 
  8.         final int childWidthMeasureSpec = getChildMeasureSpec(parentWidthMeasureSpec, 
  9.                 mPaddingLeft + mPaddingRight, lp.width); 
  10.         // 获取 ChildView 的 heightMeasureSpec 
  11.         final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec, 
  12.                 mPaddingTop + mPaddingBottom, lp.height); 
  13.         // 将计算好的子View的MeasureSpec值传入measure(),进行最后的测量 
  14.         child.measure(childWidthMeasureSpec, childHeightMeasureSpec); 
  15.     } 

3、measure()

和View的measure一致

  1. public final void measure(int widthMeasureSpec, int heightMeasureSpec) { 
  2.     ... 
  3.     int cacheIndex = (mPrivateFlags & PFLAG_FORCE_LAYOUT) == PFLAG_FORCE_LAYOUT ? -1 : 
  4.             mMeasureCache.indexOfKey(key); 
  5.     if (cacheIndex < 0 || sIgnoreMeasureCache) { 
  6.         // 调用onMeasure()计算视图大小 
  7.         onMeasure(widthMeasureSpec, heightMeasureSpec); 
  8.         mPrivateFlags3 &= ~PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT; 
  9.     } else { 
  10.         ... 

4、XXXLayout.onMeasure()

  1. ViewGroup的onMeasure和View的onMeasure是不同的,究其原因其实是因为ViewGroup是一个抽象类,所以即便它继承了View也不用必须实现View中的onMeasure方法,而它的子类不具备通用的布局特性,这导致他们的子View的测量方法各不相同,因此,ViewGroup无法对onMeasure()做统一的实现 
  2. FrameLayout为例,看看它的onMeasure是如何实现的: 
  3. //这里的widthMeasureSpec、heightMeasureSpec 
  4. //其实就是我们frameLayout可用的widthMeasureSpec 、 
  5. //heightMeasureSpec 
  6. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 
  7.   //1、获得frameLayout下childView的个数 
  8.   int count = getChildCount(); 
  9. //2、看这里的代码我们可以根据前面的Measure图来进行分析,因为只要parent 
  10. //不是EXACTLY模式,以frameLayout为例,假设frameLayout本身还不是EXACTL模式, 
  11.  // 那么表示他的大小此时还是不确定的,从表得知,此时frameLayout的大小是根据 
  12.  //childView的最大值来设置的,这样就很好理解了,也就是childView测量好后还要再 
  13. //测量一次,因为此时frameLayout的值已经可以算出来了,对于child为MATCH_PARENT 
  14. //的,child的大小也就确定了,理解了这里,后面的代码就很 容易看懂了 
  15.   final boolean measureMatchParentChildren = 
  16.           MeasureSpec.getMode(widthMeasureSpec) != MeasureSpec.EXACTLY || 
  17.           MeasureSpec.getMode(heightMeasureSpec) != MeasureSpec.EXACTLY; 
  18.    //3、清理存储模式为MATCH_PARENT的child的队列 
  19.   mMatchParentChildren.clear(); 
  20.   //4、下面三个值最终会用来设置frameLayout的大小 
  21.   int maxHeight = 0; 
  22.   int maxWidth = 0; 
  23.   int childState = 0; 
  24.   //5、开始便利frameLayout下的所有child 
  25.   for (int i = 0; i < count; i++) { 
  26.       final View child = getChildAt(i); 
  27.       //6、小发现哦,只要mMeasureAllChildren是true,就算child是GONE也会被测量哦, 
  28.       if (mMeasureAllChildren || child.getVisibility() != GONE) { 
  29.           //7、开始测量childView  
  30.           measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, 0); 
  31.           //8、下面代码是获取child中的width 和height的最大值,后面用来重新设置frameLayout,有需要的话 
  32.           final LayoutParams lp = (LayoutParams) child.getLayoutParams(); 
  33.           maxWidth = Math.max(maxWidth, 
  34.                   child.getMeasuredWidth() + lp.leftMargin + lp.rightMargin); 
  35.           maxHeight = Math.max(maxHeight, 
  36.                   child.getMeasuredHeight() + lp.topMargin + lp.bottomMargin); 
  37.           childState = combineMeasuredStates(childState, child.getMeasuredState()); 
  38.         //9、如果frameLayout不是EXACTLY, 
  39.           if (measureMatchParentChildren) { 
  40.               if (lp.width == LayoutParams.MATCH_PARENT || 
  41.                       lp.height == LayoutParams.MATCH_PARENT) { 
  42. //10、存储LayoutParams.MATCH_PARENT的child,因为现在还不知道frameLayout大小, 
  43. //也就无法设置child的大小,后面需重新测量 
  44.                   mMatchParentChildren.add(child); 
  45.               } 
  46.           } 
  47.       } 
  48.   } 
  49.     .... 
  50.   //11、这里开始设置frameLayout的大小 
  51.   setMeasuredDimension(resolveSizeAndState(maxWidth, widthMeasureSpec, childState), 
  52.           resolveSizeAndState(maxHeight, heightMeasureSpec, 
  53.                   childState << MEASURED_HEIGHT_STATE_SHIFT)); 
  54. //12、frameLayout大小确认了,我们就需要对宽或高为LayoutParams.MATCH_PARENTchild重新测量,设置大小 
  55.   count = mMatchParentChildren.size(); 
  56.   if (count > 1) { 
  57.       for (int i = 0; i < count; i++) { 
  58.           final View child = mMatchParentChildren.get(i); 
  59.           final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); 
  60.           final int childWidthMeasureSpec; 
  61.           if (lp.width == LayoutParams.MATCH_PARENT) { 
  62.               final int width = Math.max(0, getMeasuredWidth() 
  63.                       - getPaddingLeftWithForeground() - getPaddingRightWithForeground() 
  64.                       - lp.leftMargin - lp.rightMargin); 
  65.   //13、注意这里,为child是EXACTLY类型的childWidthMeasureSpec, 
  66.   //也就是大小已经测量出来了不需要再测量了 
  67.   //通过MeasureSpec.makeMeasureSpec生成相应的MeasureSpec 
  68.               childWidthMeasureSpec = MeasureSpec.makeMeasureSpec( 
  69.                       width, MeasureSpec.EXACTLY); 
  70.           } else { 
  71.   //14、如果不是,说明此时的child的MeasureSpec是EXACTLY的,直接获取child的MeasureSpec, 
  72.               childWidthMeasureSpec = getChildMeasureSpec(widthMeasureSpec, 
  73.                       getPaddingLeftWithForeground() + getPaddingRightWithForeground() + 
  74.                       lp.leftMargin + lp.rightMargin, 
  75.                       lp.width); 
  76.           } 
  77.   // 这里是对高做处理,与宽类似 
  78.           final int childHeightMeasureSpec; 
  79.           if (lp.height == LayoutParams.MATCH_PARENT) { 
  80.               final int height = Math.max(0, getMeasuredHeight() 
  81.                       - getPaddingTopWithForeground() - getPaddingBottomWithForeground() 
  82.                       - lp.topMargin - lp.bottomMargin); 
  83.               childHeightMeasureSpec = MeasureSpec.makeMeasureSpec( 
  84.                       height, MeasureSpec.EXACTLY); 
  85.           } else { 
  86.               childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec, 
  87.                       getPaddingTopWithForeground() + getPaddingBottomWithForeground() + 
  88.                       lp.topMargin + lp.bottomMargin, 
  89.                       lp.height); 
  90.           } 
  91.   //最终,再次测量child 
  92.           child.measure(childWidthMeasureSpec, childHeightMeasureSpec); 
  93.       } 
  94.   } 

总结

测量始于DecorView,通过不断的遍历子View的measure方法,根据ViewGroup的MeasureSpec及子View的LayoutParams来决定子View的MeasureSpec,进一步获取子View的测量宽高,然后逐层返回,不断保存ViewGroup的测量宽高;

单一View,一般重写此方法,针对wrap_content情况,规定View默认的大小值,避免于match_parent情况一致。ViewGroup,若不重写,就会执行和单子View中相同逻辑,不会测量子View。一般会重写onMeasure()方法,循环测量子View;

 

责任编辑:武晓燕 来源: Android开发编程
相关推荐

2021-09-30 07:36:51

AndroidViewDraw

2021-09-17 06:55:50

AndroidLayoutView

2021-10-15 09:19:17

AndroidSharedPrefe分析源码

2021-09-15 07:31:33

Android窗口管理

2021-09-24 08:10:40

Java 语言 Java 基础

2021-09-10 07:31:54

AndroidAppStartup原理

2021-09-18 06:56:01

JavaCAS机制

2017-05-03 17:00:16

Android渲染机制

2021-09-08 06:51:52

AndroidRetrofit原理

2022-10-11 07:43:34

AndroidSyncGradle 构建

2021-08-24 07:53:28

AndroidActivity生命周期

2014-07-15 17:17:31

AdapterAndroid

2017-08-08 09:15:41

前端JavaScript页面渲染

2017-01-13 22:42:15

iosswift

2017-07-12 14:58:21

AndroidInstant Run

2023-10-13 13:30:00

MySQL锁机制

2021-02-17 11:25:33

前端JavaScriptthis

2011-07-18 14:38:44

子查询外部查询

2021-07-22 09:55:28

浏览器前端缓存

2021-08-18 07:56:04

AndroidRecyclerVie复用
点赞
收藏

51CTO技术栈公众号