- Android 的View是一个树结构,而View的大小,ViewGroup的大小,会相互影响,其中有两个重要参数
1.LayoutParams布局参数
1.了解LayoutParams
- LayoutParams就是布局参数,子View通过LayoutParams告诉父容器(ViewGroup)应该如何放置自己。
- 每个ViewGroup的子类都有自己对应的LayoutParams类,典型的如LinearLayout.LayoutParams和
FrameLayout.LayoutParams等,可以看出来LayoutParams都是对应ViewGroup子类的内部类。 - MarginLayoutParams是和外间距有关的。和LayoutParams相比,MarginLayoutParams只是增加了对上下左右外间距的支持。实际上大部分LayoutParams的实现类都是继承自MarginLayoutParams,因为基本所有的父容器都是支持子View设置外间距的。
2.优先级问题
- 属性优先级问题 MarginLayoutParams主要就是增加了上下左右4种外间距。在构造方法中,先是获取了margin属性;如果该值不合法,就获取horizontalMargin;如果该值不合法,再去获取leftMargin和rightMargin属性(verticalMargin、topMargin和bottomMargin同理)。我们可以据此总结出这几种属性的优先级
- 优先级 Margin > HorizontalMargin和VerticalMargin > LeftMargin和RightMargin、TopMargin和BottomMargin
3.LayoutParams参数
- 在XML中定义View
在Java代码中直接生成View对应的实例对象 - 3.1.如果xml布局里面是具体的dp,那么layoutParams的值就是大于0。
- 3.2.如果是MATCH_PARENT
public static final int MATCH_PARENT = -1; - 3.3.如果是WRAP_CONTENT
public static final int WRAP_CONTENT = -2;
4.addView
@Override
public void addView(View child) {
addView(child, -1);
}
@Override
public void addView(View child, int index) {
if (child == null) {
throw new IllegalArgumentException("Cannot add a null child view to a ViewGroup");
}
LayoutParams params = child.getLayoutParams();
if (params == null) {
params = generateDefaultLayoutParams();
if (params == null) {
throw new IllegalArgumentException("generateDefaultLayoutParams() cannot return null");
}
}
addView(child, index, params);
}
@Override
public void addView(View child, int width, int height) {
final LayoutParams params = generateDefaultLayoutParams();
params.width = width;
params.height = height;
addView(child, -1, params);
}
@Override
public void addView(View child, LayoutParams params) {
addView(child, -1, params);
}
@Override
public void addView(View child, int index, LayoutParams params) {
super.addView(child, index, params);
}
5.generateDefaultLayoutParams方法
- addView源码往下找,就能找到generateDefaultLayoutParams方法,获取默认的LayoutParams
- ViewGroup 的 generateDefaultLayoutParams方法
protected LayoutParams generateDefaultLayoutParams() {
return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
}
6.checkLayoutParams方法
- addView源码一直往下找,就能找到checkLayoutParams方法
- ViewGroup 的 checkLayoutParams方法
protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
return p != null;
}
- 非ViewGroup 的 checkLayoutParams方法,具体源码去看看
@Override
protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
return p instanceof LinearLayout.LayoutParams;
}
2.MeasureSpec
1.测量View大小(onMeasure)
- View的大小不仅由自身所决定,同时也会受到父控件的影响,自身大小可能还会受到子view的影响,而且会多次调用onMeasure方法。
2.MeasureSpec参数
- MeasureSpec是一个32位的int值,高2位存的是测量模式,低30位存的是具体测量大小,手机像素点几乎不可能超过这个值。
- 源码我们能看到定义
3.获取参数
@Override
protected void onMeasure(intwidthMeasureSpec,intheightMeasureSpec){
int widthsizeMeasureSpec.getSize(widthMeasureSpec);
int widthmodeMeasureSpec.getMode(widthMeasureSpec);
int heightsizeMeasureSpec.getSize(heightMeasureSpec);
int heightmodeMeasureSpec.getMode(heightMeasureSpec);
}
4.三种测量模式
模式 | 二进制的值 | 描述 |
---|
UNSPECIFIED | 00 | 默认值,父控件没有给子view任何限制,子View可以设置为任意大小。 |
EXACTLY | 01 | 表示父控件已经确切的指定了子View的大小。 |
AT_MOST | 10 | 表示子View具体大小没有尺寸限制,但是存在上限,上限一般为父View大小。 |
5.获取子View的MeasureSpec(getChildMeasureSpec)
- ViewGroup要测量时,如果受到子view影响,就要先测量子view,getChildMeasureSpec方法,度量子view。
- 子view的测量,需要父布局VIewGroup的MeasureSpec,加上自己的LayoutParams布局参数来测量。
- 如果对View的宽高进行修改了,不要调用 super.onMeasure( widthMeasureSpec, heightMeasureSpec);
要调用 setMeasuredDimension( widthsize, heightsize); 这个函数。
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) {
case MeasureSpec.EXACTLY:
if (childDimension >= 0) {
resultSize = childDimension;
resultMode = MeasureSpec.EXACTLY;
} else if (childDimension == LayoutParams.MATCH_PARENT) {
resultSize = size;
resultMode = MeasureSpec.EXACTLY;
} else if (childDimension == LayoutParams.WRAP_CONTENT) {
resultSize = size;
resultMode = MeasureSpec.AT_MOST;
}
break;
。
。
。
return MeasureSpec.makeMeasureSpec(resultSize, resultMode);
}
- Android 开发艺术这书里面这张图大家应该都看过
6.确定View大小(onSizeChanged)
- 这个函数在视图大小发生改变时调用。
- 因为View的大小不仅由View本身控制,而且受父控件的影响,所以我们在确定View大小的时候最好使用系统提供的onSizeChanged回调函数。
7.获取测量后的大小(getMeasuredWidth)
- 在measure()过程结束后就可以获取到对应的值;
- 通过setMeasuredDimension()方法来进行设置的.
8.获取宽高(getWidth)
- 在layout()过程结束后才能获取到;
- 通过视图右边的坐标减去左边的坐标计算出来的
3.具体使用
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int viewGroupWidth = MeasureSpec.getSize(widthMeasureSpec);
int viewGroupHeight = MeasureSpec.getSize(heightMeasureSpec);
for (int i = 0; i < getChildCount(); i++) {
View childView = getChildAt(i);
if (childView.getVisibility() == View.VISIBLE) {
LayoutParams childLayoutParams = childView.getLayoutParams();
int childWidthMeasureSpec = getChildMeasureSpec(widthMeasureSpec, leftPadding + rightPadding, childLayoutParams.width);
int childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec, topPadding + bottomPadding, childLayoutParams.height);
childView.measure(childWidthMeasureSpec, childHeightMeasureSpec);
int childMeasureWidth = childView.getMeasuredWidth();
int childMeasureHeight = childView.getMeasuredHeight();
}
int widthMode = MeasureSpec.getMode(widthMeasureSpec);
int heightMode = MeasureSpec.getMode(heightMeasureSpec);
int realWidth = widthMode == MeasureSpec.EXACTLY ? viewGroupWidth : viewGroupNeedWidth;
int realHeight = heightMode == MeasureSpec.EXACTLY ? viewGroupHeight : viewGroupNeedHeight;
setMeasuredDimension(realWidth, realHeight);
}
4.参考资料