Android 自定义View
Android 自定义View流程中的几个方法解析:
- onFinishInflate():从布局文件.xml加载完组件后回调
- onMeasure() :调用该方法负责测量组件大小
- onSizeChanged() :组件大小发生改变时回调该方法
- onLayout() :该方法负责确定组件的显示的位置
- onDraw() :该方法负责将组件在屏幕中画出来
自定义View流程中几个方法的执行顺序就是这排列的顺序。
1)onMeasure():该方法负责对控件大小进行测量
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
//该方法的参数是根据布局文件中的设置获取的
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int width=MeasureSpec.getSize(widthMeasureSpec);//获取控件的宽
//在其他地方可以通过getMeasuredWidth()获取该值
}
2)onLayout():负责确定View显示的位置
子视图的具体位置都是相对于父视图而言的。View的onLayout()方法为空实现,而ViewGroup的onLayout()方法是abstract的,所以继承自ViewGroup的View必需覆写onLayout()方法。
这该方法的最后用以下方法设置子View位置。
child.layout(l, t, r, b);
深入了解参考:http://www.codekk.com/blogs/detail/54cfab086c4761e5001b253f
http://www.gcssloop.com/customview/CustomViewProcess
http://www.lai18.com/content/10251886.html