一个MeasureSpec封装了父布局传递给子布局的布局要求,每一个MeasureSpec表明了一组宽度和高度的要求。一个MeasureSpec由大小和模式组成。它有三种模式:UNSPECIFIED(未指定),父元素部队自元素施加任何束缚,子元素能够获得任意想要的大小;EXACTLY(彻底),父元素决定自元素的确切大小,子元素将被限定在给定的边界里而忽略它自己大小;AT_MOST(至多),子元素至多达到指定大小的值。java
它经常使用的三个函数:web
1.static int getMode(int measureSpec):根据提供的测量值(格式)提取模式(上述三个模式之一)函数
2.static int getSize(int measureSpec):根据提供的测量值(格式)提取大小值(这个大小也就是咱们一般所说的大小)布局
3.static int makeMeasureSpec(int size,int mode):根据提供的大小值和模式建立一个测量值(格式)spa
这个类的使用呢,一般在view组件的onMeasure方法里面调用但也有少数例外,看看几个例子:code
a.首先一个咱们经常使用到的一个有用的函数,View.resolveSize(int size,int measureSpec)orm
public static int resolveSize(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: result = Math.min(size, specSize); break; case MeasureSpec.EXACTLY: result = specSize; break; } return result; }
再看看MeasureSpec.makeMeasureSpec方法,实际上这个方法很简单:ci
public static int makeMeasureSpec( size, mode) { return size + mode; }
这样你们不难理解size跟measureSpec区别了。看看它的使用吧,ListView.measureItem(View child)
get
private void measureItem(View child) { ViewGroup.LayoutParams p = child.getLayoutParams(); if (p == null) { p = new ViewGroup.LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT); } int childWidthSpec = ViewGroup.getChildMeasureSpec(mWidthMeasureSpec, mListPadding.left + mListPadding.right, p.width); int lpHeight = p.height; int childHeightSpec; if (lpHeight > 0) { childHeightSpec = MeasureSpec.makeMeasureSpec(lpHeight, MeasureSpec.EXACTLY); } else { childHeightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED); } child.measure(childWidthSpec, childHeightSpec); }
measureSpec方法一般在ViewGroup中用到,它能够根据模式(MeasureSpec里面的三个)能够调节子元素的大小。it
注意,使用EXACTLY和AT_MOST一般是同样的效果,若是你要区别他们,那么你就要使用上面的函数View.resolveSize(int size,int measureSpec)返回一个size值,而后使用你的view调用setMeasuredDimension(int,int)函数。
protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { mMeasuredWidth = measuredWidth; mMeasuredHeight = measuredHeight; mPrivateFlags |= MEASURED_DIMENSION_SET; }
而后你调用view.getMeasuredWidth,view.getMeasuredHeigth 返回的就是上面函数里的mMeasuredWidth,mMeasuredHeight的值。