共计 4963 个字符,预计需要花费 13 分钟才能阅读完成。
自定义分三部分绘制、布局和触摸反馈,本篇主要讲的布局过程的自定义
布局过程的含义
布局过程,就是程序在运行时利用布局文件的代码来计算出实际尺寸的过程。
布局过程的工作内容
两个阶段:测量阶段和布局阶段。
测量阶段 :从上到下递归地调用每个 View 或者 ViewGroup 的 measure() 方法,
测量他们的尺寸并计算它们的位置;
布局阶段 :从上到下递归地调用每个 View 或者 ViewGroup 的 layout() 方法,
把测得的它们的尺寸和位置赋值给它们。
View 或 ViewGroup 的布局过程
测量阶段 ,measure() 方法被父 View 调用,在 measure() 中做一些准备和优化工作后,
调用 onMeasure() 来进行实际的自我测量。
onMeasure() 做的事,View 和 ViewGroup 不一样:
View:View 在 onMeasure() 中会计算出自己的尺寸然后保存;
ViewGroup:ViewGroup 在 onMeasure() 中会调用所有子 View 的 measure() 让它们进行自我测量,并根据子 View 计算出的期望尺寸来计算出它们的实际尺寸和位置(实际上 99.99% 的父 View 都会使用子 View 给出的期望尺寸来作为实际尺寸,原因在下期或下下期会讲到)然后保存。
同时,它也会根据子 View 的尺寸和位置来计算出自己的尺寸然后保存;
布局阶段 ,layout() 方法被父 View 调用,在 layout() 中它会保存父 View 传进来的自己的位置和
尺寸,并且调用 onLayout() 来进行实际的内部布局。
onLayout() 做的事,View 和 ViewGroup 也不一样:
View:由于没有子 View,所以 View 的 onLayout() 什么也不做。
ViewGroup:ViewGroup 在 onLayout() 中会调用自己的所有子 View 的 layout() 方法,
把它们的尺寸和位置传给它们,让它们完成自我的内部布局。
布局过程自定义的方式
三类:
1. 重写 onMeasure() 来修改已有的 View 的尺寸;
2. 重写 onMeasure() 来全新定制自定义 View 的尺寸;
3. 重写 onMeasure() 和 onLayout() 来全新定制自定义 ViewGroup 的内部布局。
第一类自定义 – 修改已有的 View 的尺寸
重写 onMeasure() 来修改已有的 View 的尺寸的具体做法:
重写 onMeasure() 方法,并在里面调用 super.onMeasure(),触发原有的自我测量;
在 super.onMeasure() 的下面用 getMeasuredWidth() 和 getMeasuredHeight()
来获取到之前的测量结果,
并使用自己的算法,根据测量结果计算出新的结果;
调用 setMeasuredDimension() 来保存新的结果。
// 重写 onMeasure()方法,自定义正方形 ImageView
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int measuredWidth = getMeasuredWidth();
int measuredHeight = getMeasuredHeight();
if (measuredWidth > measuredHeight) {measuredWidth = measuredHeight;} else {measuredHeight = measuredWidth;}
setMeasuredDimension(measuredWidth, measuredHeight);
}
第二类自定义 – 全新定制自定义 View 的尺寸
全新定制尺寸和修改尺寸的最重要区别:
1. 不需要调用 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
2. 需要在计算的同时,保证计算结果满足父 View 给出的的尺寸限制
父 View 的尺寸限制
由来:开发者的要求(布局文件中 layout_ 打头的属性)经过父 View 处理计算后的更精确的要求;
限制的分类:
UNSPECIFIED:不限制(0)
AT_MOST:限制上限(-2147483648)
EXACTLY:限制固定值(1073741824)
全新定制自定义 View 尺寸的方式:
1. 重写 onMeasure(),并计算出 View 的尺寸;
2. 使用 resolveSize() 来让子 View 的计算结果符合父 View 的限制(当然,如果你想用自己的方式
来满足父 View 的限制也行。)
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int width = ---;
int height = ---;
width = resolveSize(width, widthMeasureSpec);
height = resolveSize(height, heightMeasureSpec);
setMeasuredDimension(width, height);
}
public static int resolveSize(int size, int measureSpec) {return resolveSizeAndState(size, measureSpec, 0) & MEASURED_SIZE_MASK;
}
//View 中的静态方法
public static int resolveSizeAndState(int size, int measureSpec, int childMeasuredState) {final int specMode = MeasureSpec.getMode(measureSpec);
final int specSize = MeasureSpec.getSize(measureSpec);
final int result;
switch (specMode) {
case MeasureSpec.AT_MOST:
if (specSize < size) {result = specSize | MEASURED_STATE_TOO_SMALL;} else {result = size;}
break;
case MeasureSpec.EXACTLY:
result = specSize;
break;
case MeasureSpec.UNSPECIFIED:
default:
result = size;
}
return result | (childMeasuredState & MEASURED_STATE_MASK);
}
第三类自定义 – 全新定制 ViewGroup 的内部布局
重写 onMeasure() 和 onLayout() 来定制 Layout 的内部布局。
定制 Layout 内部布局的方式
1. 重写 onMeasure() 来计算内部布局
2. 重写 onLayout() 来摆放子 View
重写 onMeasure() 的三个步骤:
1. 调用每个子 View 的 measure() 来计算子 View 的尺寸
2. 计算子 View 的位置并保存子 View 的位置和尺寸
3. 计算自己的尺寸并用 setMeasuredDimension() 保存
计算子 View 尺寸的关键
计算子 View 的尺寸,关键在于 measure() 方法的两个参数——也就是子 View 的两个 MeasureSpec 的计算。
子 View 的 MeasureSpec 的计算方式:
1. 结合开发者的要求(xml 中 layout_ 打头的属性)和自己的可用空间(自己的尺寸上限 – 已用尺寸)
2. 尺寸上限根据自己的 MeasureSpec 中的 mode 而定
2.1 EXACTLY / AT_MOST:尺寸上限为 MeasureSpec 中的 size
2.2 UNSPECIFIED:尺寸无上限
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// 调用 ViewGroup 类中测量子类的方法
measureChildren(widthMeasureSpec, heightMeasureSpec);
}
/**
* 遍历所有的子 view 去测量(跳过 GONE 类型 View)* @param widthMeasureSpec 父视图的宽可用空间测量值
* @param heightMeasureSpec 父视图的高可用空间测量值
*/
protected void measureChildren(int widthMeasureSpec, int heightMeasureSpec) {
final int size = mChildrenCount;
final View[] children = mChildren;
for (int i = 0; i < size; ++i) {final View child = children[i];
if ((child.mViewFlags & VISIBILITY_MASK) != GONE) {measureChild(child, widthMeasureSpec, heightMeasureSpec);
}
}
}
/**
* 测量单个子 View,将宽高和 padding 加在一起后交给 getChildMeasureSpec 去获得最终的测量值
* @param child 需要测量的子视图
* @param parentWidthMeasureSpec 父视图的宽可用空间测量值
* @param parentHeightMeasureSpec 父视图的高可用空间测量值
*/
protected void measureChild(View child, int parentWidthMeasureSpec,
int parentHeightMeasureSpec) {
// 取得子视图的布局参数
final LayoutParams lp = child.getLayoutParams();
// 通过 getChildMeasureSpec 获取最终的宽高详细测量值
final int childWidthMeasureSpec = getChildMeasureSpec(parentWidthMeasureSpec,
mPaddingLeft + mPaddingRight, lp.width);
final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
mPaddingTop + mPaddingBottom, lp.height);
// 将计算好的宽高详细测量值传入 measure 方法,完成最后的测量
child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
}
重写 onLayout() 的方式
在 onLayout() 里调用每个子 View 的 layout(),让它们保存自己的位置和尺寸。
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {for (int i = 0; i < getChildCount(); i++) {View childAt = getChildAt(i);
childAt.layout(childLeft[i], childTop[i], childRight[i], childBottom[i]);
}
}
总结
有些东西你不仅要懂,而且要能够很好地表达出来,能够让面试官认可你的理解,例如 Handler 机制,这个是面试必问之题。有些晦涩的点,或许它只活在面试当中,实际工作当中你压根不会用到它,但是你要知道它是什么东西。
这里放上一份安卓程序员学习基础知识体系粗略大纲,详细完整的大纲由于图片过大就不在这里放了,需要的伙伴们可以加我维信:X1524478394获取~
还有一些相关的 PDF:
扫描二维码即可:
专注分享大型 Bat 面试知识,后续会持续更新,希望通过这些高级面试题能够降低面试 Android 岗位的门槛,让更多的 Android 工程师理解 Android 系统,掌握 Android 系统。喜欢的话麻烦点击一个喜欢在关注一下~