onMeasure,onLoyout,onDraw的测量和布局

来源:互联网 发布:java 复制代码 编辑:程序博客网 时间:2024/06/06 01:21


转自:《Android自定义控件三部曲文章索引》http://blog.csdn.net/harvic880925/article/details/50995268


今天给大家讲讲有关自定义布局控件的问题,大家来看这样一个需求,你需要设计一个Container,实现内部控件自动换行。即里面的控件能够根据长度来判断当前行是否容得下它,进而决定是否转到下一行显示。效果图如下


在上图中,所有的紫色部分是FlowLayout控件,明显可以看出,内部的每个TextView控件,可以根据大小自动排列。 
效果图就是这样子了,第一篇先讲下预备知识。

一、ViewGroup绘制流程

注意,View及ViewGroup基本相同,只是在ViewGroup中不仅要绘制自己还是绘制其中的子控件,而View则只需要绘制自己就可以了,所以我们这里就以ViewGroup为例来讲述整个绘制流程。
绘制流程分为三步:测量、布局、绘制 
分别对应:onMeasure()、onLayout()、onDraw() 

其中,他们三个的作用分别如下: 
onMeasure():测量自己的大小,为正式布局提供建议。(注意,只是建议,至于用不用,要看onLayout); 
onLayout():使用layout()函数对所有子控件布局; 
onDraw():根据布局的位置绘图; 
有关绘图的部分,大家可以参考我的系列博客《android Graphics(一):概述及基本几何图形绘制》共有四篇,讲述了有关android 绘图的90%内容,大家可以参考。 
这篇文章着重将内容放在分析onMeasure()和onLayout()上。

二、onMeasure与MeasureSpec

布局绘画涉及两个过程:测量过程和布局过程。测量过程通过measure方法实现,是View树自顶向下的遍历,每个View在循环过程中将尺寸细节往下传递,当测量过程完成之后,所有的View都存储了自己的尺寸。第二个过程则是通过方法layout来实现的,也是自顶向下的。在这个过程中,每个父View负责通过计算好的尺寸放置它的子View。 
前面讲过,onMeasure()是用来测量当前控件大小的,给onLayout()提供数值参考,需要特别注意的是:测量完成以后通过setMeasuredDimension(int,int)设置给系统。

1、onMeasure

首先,看一下onMeasure()的声明:

[java] view plain copy
  1. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)  
这里我们主要关注传进来的两个参数:int widthMeasureSpec, int heightMeasureSpec 
与这两个参数有关的是两个问题:意义和组成。即他们是怎么来的,表示什么意思;还有,他们是组成方式是怎样的。 
我们先说他们的意义: 
他们是父类传递过来给当前view的一个建议值,即想把当前view的尺寸设置为宽widthMeasureSpec,高heightMeasureSpec 
有关他们的组成,我们就直接转到MeasureSpec部分。

2、MeasureSpec

虽然表面上看起来他们是int类型的数字,其实他们是由mode+size两部分组成的。 
widthMeasureSpec和heightMeasureSpec转化成二进制数字表示,他们都是32位的。前两位代表mode(测量模式),后面30位才是他们的实际数值(size)。 
(1)模式分类 
它有三种模式: 
①、UNSPECIFIED(未指定),父元素部队自元素施加任何束缚,子元素可以得到任意想要的大小; 
②、EXACTLY(完全),父元素决定自元素的确切大小,子元素将被限定在给定的边界里而忽略它本身大小; 
③、AT_MOST(至多),子元素至多达到指定大小的值。 

他们对应的二进制值分别是: 
UNSPECIFIED=00000000000000000000000000000000
EXACTLY =01000000000000000000000000000000 
AT_MOST =10000000000000000000000000000000 
由于最前面两位代表模式,所以他们分别对应十进制的0,1,2; 
(2)模式提取 
现在我们知道了widthMeasureSpec和heightMeasureSpec是由模式和数值组成的,而且二进制的前两位代表模式,后28位代表数字。 
我们先想想,如果我们自己来提取widthMeasureSpec和heightMeasureSpec中的模式和数值是怎么提取呢? 
首先想到的肯定是通过MASK和与运算去掉不需要的部分而得到对应的模式或数值。 
说到这大家可能会迷茫,我们写段代码来提取模式部分吧:

[java] view plain copy
  1. //对应11000000000000000000000000000000;总共32位,前两位是1  
  2. int MODE_MASK  = 0xc0000000;  
  3.   
  4. //提取模式  
  5. public static int getMode(int measureSpec) {  
  6.     return (measureSpec & MODE_MASK);  
  7. }  
  8. //提取数值  
  9. public static int getSize(int measureSpec) {  
  10.     return (measureSpec & ~MODE_MASK);  
  11. }  
相信大家看了代码就应该清楚模式和数值提取的方法了吧,主要用到了MASK的与、非运算,难度不大,如果有问题,自行谷歌一下与、非运算方法吧。 
(3)、MeasureSpec 
上面我们自已实现了模式和数值的提取。但在强大的andorid面前,肯定有提供提取模式和数值的类。这个类就是MeasureSpec 
下面两个函数就可以实现这个功能:
[java] view plain copy
  1. MeasureSpec.getMode(int spec) //获取MODE  
  2. MeasureSpec.getSize(int spec) //获取数值  
另外MODE的取值为:
[java] view plain copy
  1. MeasureSpec.AT_MOST  
  2. MeasureSpec.EXACTLY  
  3. MeasureSpec.UNSPECIFIED  
通过下面的代码就可以分别获取widthMeasureSpec和heightMeasureSpec的MODE和数值
[java] view plain copy
  1. int measureWidth = MeasureSpec.getSize(widthMeasureSpec);  
  2. int measureHeight = MeasureSpec.getSize(heightMeasureSpec);  
  3. int measureWidthMode = MeasureSpec.getMode(widthMeasureSpec);  
  4. int measureHeightMode = MeasureSpec.getMode(heightMeasureSpec);  
其实大家通过查看代码可以知道,我们的实现就是MeasureSpec.getSize()和MeasureSpec.getMode()的实现代码。 
(4)、模式有什么用呢 
我们知道这里有三个模式:EXACTLY、AT_MOST、UNSPECIFIED 
需要注意的是widthMeasureSpec和heightMeasureSpec各自都有它对应的模式,模式的由来分别来自于XML定义:
简单来说,XML布局和模式有如下对应关系:
  • wrap_content-> MeasureSpec.AT_MOST
  • match_parent -> MeasureSpec.EXACTLY
  • 具体值 -> MeasureSpec.EXACTLY

例如,下面这个XML

[java] view plain copy
  1. <com.example.harvic.myapplication.FlowLayout  
  2.      android:layout_width="match_parent"  
  3.      android:layout_height="wrap_content">  
  4.        
  5. </com.example.harvic.myapplication.FlowLayout>  
那FlowLayout在onMeasure()中传值时widthMeasureSpec的模式就是 MeasureSpec.EXACTLY,即父窗口宽度值。heightMeasureSpec的模式就是 MeasureSpec.AT_MOST,即不确定的。

一定要注意是,当模式是MeasureSpec.EXACTLY时,我们就不必要设定我们计算的大小了,因为这个大小是用户指定的,我们不应更改。但当模式是MeasureSpec.AT_MOST时,也就是说用户将布局设置成了wrap_content,我们就需要将大小设定为我们计算的数值,因为用户根本没有设置具体值是多少,需要我们自己计算。
即,假如width和height是我们经过计算的控件所占的宽度和高度。那在onMeasure()中使用setMeasuredDimension()最后设置时,代码应该是这样的:
[java] view plain copy
  1. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
  2.         super.onMeasure(widthMeasureSpec, heightMeasureSpec);  
  3.     int measureWidth = MeasureSpec.getSize(widthMeasureSpec);  
  4.     int measureHeight = MeasureSpec.getSize(heightMeasureSpec);  
  5.     int measureWidthMode = MeasureSpec.getMode(widthMeasureSpec);  
  6.     int measureHeightMode = MeasureSpec.getMode(heightMeasureSpec);  
  7.       
  8.     //经过计算,控件所占的宽和高分别对应width和height  
  9.     //计算过程,我们会在下篇细讲  
  10.     …………  
  11.       
  12.     setMeasuredDimension((measureWidthMode == MeasureSpec.EXACTLY) ? measureWidth: width, (measureHeightMode == MeasureSpec.EXACTLY) ? measureHeight: height);  
  13. }  

三、onLayout()

1、概述

上面说了,onLayout()是实现所有子控件布局的函数。注意,是所有子控件!!!那它自己的布局怎么办?后面我们再讲,先讲讲在onLayout()中我们应该做什么。 
我们先看看ViewGroup的onLayout()函数的默认行为是什么 
在ViewGroup.java中
[java] view plain copy
  1. @Override  
  2. protected abstract void onLayout(boolean changed, int l, int t, int r, int b);  
是一个抽象方法,说明凡是派生自ViewGroup的类都必须自己去实现这个方法。像LinearLayout、RelativeLayout等布局,都是重写了这个方法,然后在内部按照各自的规则对子视图进行布局的。

2、实例

下面我们就举个例子来看一下有关onMeasure()和onLayout()的具体使用: 
下面是效果图: 


这个效果图主要有两点: 
1、三个TextView竖直排列 
2、背景的Layout宽度是match_parent,高度是wrap_content. 
下面我们就看一下,代码上如何实现: 
(1)、XML布局 
首先我们看一下XML布局:(activity_main.xml)

[html] view plain copy
  1. <com.harvic.simplelayout.MyLinLayout   
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     xmlns:tools="http://schemas.android.com/tools"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="wrap_content"  
  6.     android:background="#ff00ff"  
  7.     tools:context=".MainActivity">  
  8.   
  9.     <TextView android:text="第一个VIEW"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content" />  
  12.   
  13.     <TextView android:text="第二个VIEW"  
  14.         android:layout_width="wrap_content"  
  15.         android:layout_height="wrap_content" />  
  16.   
  17.     <TextView android:text="第三个VIEW"  
  18.         android:layout_width="wrap_content"  
  19.         android:layout_height="wrap_content" />  
  20.   
  21. </com.harvic.simplelayout.MyLinLayout>  
可见里面有三个TextView,然后自定义的MyLinLayout布局,宽度设为了match_parent,高度设为了wrap_content.
(2)、MyLinLayout实现:重写onMeasure()函数
我们前面讲过,onMeasure()的作用就是根据container内部的子控件计算自己的宽和高,最后通过setMeasuredDimension(int width,int height设置进去);
下面看看onMeasure()的完整代码,然后再逐步讲解:
[java] view plain copy
  1. @Override  
  2. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
  3.     super.onMeasure(widthMeasureSpec, heightMeasureSpec);  
  4.     int measureWidth = MeasureSpec.getSize(widthMeasureSpec);  
  5.     int measureHeight = MeasureSpec.getSize(heightMeasureSpec);  
  6.     int measureWidthMode = MeasureSpec.getMode(widthMeasureSpec);  
  7.     int measureHeightMode = MeasureSpec.getMode(heightMeasureSpec);  
  8.   
  9.     int height = 0;  
  10.     int width = 0;  
  11.     int count = getChildCount();  
  12.     for (int i=0;i<count;i++) {  
  13.         //测量子控件  
  14.         View child = getChildAt(i);  
  15.         measureChild(child, widthMeasureSpec, heightMeasureSpec);  
  16.         //获得子控件的高度和宽度  
  17.         int childHeight = child.getMeasuredHeight();  
  18.         int childWidth = child.getMeasuredWidth();  
  19.         //得到最大宽度,并且累加高度  
  20.         height += childHeight;  
  21.         width = Math.max(childWidth, width);  
  22.     }  
  23.   
  24.     setMeasuredDimension((measureWidthMode == MeasureSpec.EXACTLY) ? measureWidth: width, (measureHeightMode == MeasureSpec.EXACTLY) ? measureHeight: height);  
  25. }  
首先,是从父类传过来的建议宽度和高度值:widthMeasureSpec、heightMeasureSpec
从他们里面利用MeasureSpec提取宽高值和对应的模式:
[java] view plain copy
  1. int measureWidth = MeasureSpec.getSize(widthMeasureSpec);  
  2. int measureHeight = MeasureSpec.getSize(heightMeasureSpec);  
  3. int measureWidthMode = MeasureSpec.getMode(widthMeasureSpec);  
  4. int measureHeightMode = MeasureSpec.getMode(heightMeasureSpec);  
接下来就是通过测量它所有的子控件来决定它所占位置的大小:
[java] view plain copy
  1. int height = 0;  
  2. int width = 0;  
  3. int count = getChildCount();  
  4. for (int i=0;i<count;i++) {  
  5.     //测量子控件  
  6.     View child = getChildAt(i);  
  7.     measureChild(child, widthMeasureSpec, heightMeasureSpec);  
  8.     //获得子控件的高度和宽度  
  9.     int childHeight = child.getMeasuredHeight();  
  10.     int childWidth = child.getMeasuredWidth();  
  11.     //得到最大宽度,并且累加高度  
  12.     height += childHeight;  
  13.     width = Math.max(childWidth, width);  
  14. }  
我们这里要计算的是整个VIEW当被设置成layout_width="wrap_content",layout_height="wrap_content"所占用的大小,因为我们是垂直排列其内部所有的VIEW,所以container所占宽度应该是各个TextVIew中的最大宽度,所占高度应该是所有控件的高度和。
最后,根据当前用户的设置来判断是否将计算出来的值设置进onMeasure()中,用它来计算当前container所在位置。
[java] view plain copy
  1. setMeasuredDimension((measureWidthMode == MeasureSpec.EXACTLY) ? measureWidth: width, (measureHeightMode == MeasureSpec.EXACTLY) ? measureHeight: height);  
前面我们讲过,模式与XML布局的对应关系:
* wrap_content-> MeasureSpec.AT_MOST
* match_parent -> MeasureSpec.EXACTLY
* 具体值 -> MeasureSpec.EXACTLY

再看我们前面XML中针对MyLinLayout的设置:
[html] view plain copy
  1. <com.harvic.simplelayout.MyLinLayout   
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     xmlns:tools="http://schemas.android.com/tools"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="wrap_content"  
  6.     android:background="#ff00ff"  
  7.     tools:context=".MainActivity">  
所以这里的measureWidthMode应该是MeasureSpec.EXACTLY,measureHeightMode应该是MeasureSpec.AT_MOST;所以在最后利用setMeasuredDimension(width,height)来最终设置时,width使用的是从父类传过来的measureWidth,而高度则是我们自己计算的height.即实际的运算结果是这样的:
[java] view plain copy
  1. setMeasuredDimension(measureWidth,height);  

总体来讲,onMeasure()中计算出的width和height,就是当XML布局设置为layout_width="wrap_content"、layout_height="wrap_content"时所占的宽和高;即整个container所占的最小矩形

(3)、MyLinLayout实现:重写onLayout()函数

在这部分,就是根据自己的意愿把内部的各个控件排列起来。我们要完成的是将所有的控件垂直排列;
先看完整的代码,然后再细讲:
[java] view plain copy
  1. protected void onLayout(boolean changed, int l, int t, int r, int b) {  
  2.     int top = 0;  
  3.     int count = getChildCount();  
  4.     for (int i=0;i<count;i++) {  
  5.   
  6.         View child = getChildAt(i);  
  7.   
  8.         int childHeight = child.getMeasuredHeight();  
  9.         int childWidth = child.getMeasuredWidth();  
  10.   
  11.         child.layout(0, top, childWidth, top + childHeight);  
  12.         top += childHeight;  
  13.     }  
  14. }  
最核心的代码,就是调用layout()函数设置子控件所在的位置:
[java] view plain copy
  1. int childHeight = child.getMeasuredHeight();  
  2. int childWidth = child.getMeasuredWidth();  
  3.   
  4. child.layout(0, top, childWidth, top + childHeight);  
  5. top += childHeight;  

在这里top指的是控件的顶点,那bottom的坐标就是top+childHeight,我们从最左边开始布局,那么right的坐标就肯定是子控件的宽度值了childWidth.

到这里,这个例子就讲完了,源码会在文章底部给出,下面来讲一个非常容易混淆的问题。

(4)、getMeasuredWidth()与getWidth()
趁热打铁,就这个例子,我们讲一个很容易出错的问题:getMeasuredWidth()与getWidth()的区别。他们的值大部分时间都是相同的,但意义确是根本不一样的,我们就来简单分析一下。
区别主要体现在下面几点:
- 首先getMeasureWidth()方法在measure()过程结束后就可以获取到了,而getWidth()方法要在layout()过程结束后才能获取到。
- getMeasureWidth()方法中的值是通过setMeasuredDimension()方法来进行设置的,而getWidth()方法中的值则是通过layout(left,top,right,bottom)方法设置的。

还记得吗,我们前面讲过,setMeasuredDimension()提供的测量结果只是为布局提供建议,最终的取用与否要看layout()函数。大家再看看我们上面重写的MyLinLayout,是不是我们自己使用child.layout(left,top,right,bottom)来定义了各个子控件所应在的位置:
[java] view plain copy
  1. int childHeight = child.getMeasuredHeight();  
  2. int childWidth = child.getMeasuredWidth();  
  3.   
  4. child.layout(0, top, childWidth, top + childHeight);  
从代码中可以看到,我们使用child.layout(0, top, childWidth, top + childHeight);来布局控件的位置,其中getWidth()的取值就是这里的右坐标减去左坐标的宽度;因为我们这里的宽度是直接使用的child.getMeasuredWidth()的值,当然会导致getMeasuredWidth()与getWidth()的值是一样的。如果我们在调用layout()的时候传进去的宽度值不与getMeasuredWidth()相同,那必然getMeasuredWidth()与getWidth()的值就不再一样了。
一定要注意的一点是:getMeasureWidth()方法在measure()过程结束后就可以获取到了,而getWidth()方法要在layout()过程结束后才能获取到。再重申一遍!!!!!
源码在文章底部给出

3、疑问:container自己什么时候被布局

前面我们说了,在派生自ViewGroup的container中,比如我们上面的MyLinLayout,在onLayout()中布局它所有的子控件。那它自己什么时候被布局呢?

它当然也有父控件,它的布局也是在父控件中由它的父控件完成的,就这样一层一层地向上由各自的父控件完成对自己的布局。真到所有控件的最顶层结点,在所有的控件的最顶部有一个ViewRoot,它才是所有控件的最终祖先结点。那让我们来看看它是怎么来做的吧。

在它布局里,会调用它自己的一个layout()函数(不能被重载,代码位于View.Java):

[java] view plain copy
  1. /* final 标识符 , 不能被重载 , 参数为每个视图位于父视图的坐标轴  
  2.  * @param l Left position, relative to parent  
  3.  * @param t Top position, relative to parent  
  4.  * @param r Right position, relative to parent  
  5.  * @param b Bottom position, relative to parent  
  6.  */    
  7. public final void layout(int l, int t, int r, int b) {    
  8.     boolean changed = setFrame(l, t, r, b); //设置每个视图位于父视图的坐标轴    
  9.     if (changed || (mPrivateFlags & LAYOUT_REQUIRED) == LAYOUT_REQUIRED) {    
  10.         if (ViewDebug.TRACE_HIERARCHY) {    
  11.             ViewDebug.trace(this, ViewDebug.HierarchyTraceType.ON_LAYOUT);    
  12.         }    
  13.     
  14.         onLayout(changed, l, t, r, b);//回调onLayout函数 ,设置每个子视图的布局    
  15.         mPrivateFlags &= ~LAYOUT_REQUIRED;    
  16.     }    
  17.     mPrivateFlags &= ~FORCE_LAYOUT;    
在SetFrame(l,t,r,b)就是设置自己的位置,设置结束以后才会调用onLayout(changed, l, t, r, b)来设置内部所有子控件的位置。
OK啦,到这里有关onMeasure()和onLayout()的内容就讲完啦,想必大家应该也对整个布局流程有了一个清楚的认识了,下面我们再看一个紧要的问题:如何得到自定义控件的左右间距margin值。

四、获取子控件Margin的方法

1、获取方法及示例

在这部分,大家先不必纠结这个例子为什么要这么写,我会先简单粗暴的教大家怎么先获取到margin值,然后再细讲为什么这样写,他们的原理是怎样的。

如果要自定义ViewGroup支持子控件的layout_margin参数,则自定义的ViewGroup类必须重载generateLayoutParams()函数,并且在该函数中返回一个ViewGroup.MarginLayoutParams派生类对象,这样才能使用margin参数。
我们在上面MyLinLayout例子的基础上,添加上layout_margin参数;

(1)、首先,在XML中添加上layout_margin参数

[html] view plain copy
  1. <com.harvic.simplelayout.MyLinLayout  
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     xmlns:tools="http://schemas.android.com/tools"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="wrap_content"  
  6.     android:background="#ff00ff"  
  7.     tools:context=".MainActivity">  
  8.   
  9.     <TextView android:text="第一个VIEW"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:layout_marginTop="10dp"  
  13.         android:background="#ff0000"/>  
  14.   
  15.     <TextView android:text="第二个VIEW"  
  16.         android:layout_width="wrap_content"  
  17.         android:layout_height="wrap_content"  
  18.         android:layout_marginTop="20dp"  
  19.         android:background="#00ff00"/>  
  20.   
  21.     <TextView android:text="第三个VIEW"  
  22.         android:layout_width="wrap_content"  
  23.         android:layout_height="wrap_content"  
  24.         android:layout_marginTop="30dp"  
  25.         android:background="#0000ff"/>  
  26.   
  27. </com.harvic.simplelayout.MyLinLayout>  
我们在每个TextView中都添加了一layout_marginTop参数,而且值分别是10dp,20dp,30dp;背景也都分别改为了红,绿,蓝;
现在我们运行一上,看看效果:

从图中可以看到,根本没作用!!!这是为什么呢?因为测量和布局都是我们自己实现的,我们在onLayout()中没有根据Margin来布局,当然不会出现有关Margin的效果啦。需要特别注意的是,如果我们在onLayout()中根据margin来布局的话,那么我们在onMeasure()中计算container的大小时,也要加上margin,不然会导致container太小,而控件显示不全的问题。费话不多说,我们直接看代码实现。

(2)、重写generateLayoutParams()函数

重写代码如下:

[java] view plain copy
  1. @Override  
  2. protected LayoutParams generateLayoutParams(LayoutParams p) {  
  3.     return new MarginLayoutParams(p);  
  4. }  
  5.   
  6. @Override  
  7. public LayoutParams generateLayoutParams(AttributeSet attrs) {  
  8.     return new MarginLayoutParams(getContext(), attrs);  
  9. }  
  10.   
  11. @Override  
  12. protected LayoutParams generateDefaultLayoutParams() {  
  13.     return new MarginLayoutParams(LayoutParams.MATCH_PARENT,  
  14.             LayoutParams.MATCH_PARENT);  
  15. }  
在这里,我们重写了两个函数,一个是generateLayoutParams()函数,一个是generateDefaultLayoutParams()函数。直接返回对应的MarginLayoutParams()的实例。至于为什么要这么写,我们后面再讲,这里先把Margin信息获取到再说。

(3)、重写onMeasure()

让我们先看一下重写好的onMeasure()函数代码:
[java] view plain copy
  1. @Override  
  2. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
  3.     super.onMeasure(widthMeasureSpec, heightMeasureSpec);  
  4.     int measureWidth = MeasureSpec.getSize(widthMeasureSpec);  
  5.     int measureHeight = MeasureSpec.getSize(heightMeasureSpec);  
  6.     int measureWidthMode = MeasureSpec.getMode(widthMeasureSpec);  
  7.     int measureHeightMode = MeasureSpec.getMode(heightMeasureSpec);  
  8.   
  9.     int height = 0;  
  10.     int width = 0;  
  11.     int count = getChildCount();  
  12.     for (int i=0;i<count;i++) {  
  13.   
  14.         View child = getChildAt(i);  
  15.         measureChild(child, widthMeasureSpec, heightMeasureSpec);  
  16.   
  17.         MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();  
  18.         int childHeight = child.getMeasuredHeight()+lp.topMargin+lp.bottomMargin;  
  19.         int childWidth = child.getMeasuredWidth()+lp.leftMargin+lp.rightMargin;  
  20.   
  21.         height += childHeight;  
  22.         width = Math.max(childWidth, width);  
  23.     }  
  24.   
  25.     setMeasuredDimension((measureWidthMode == MeasureSpec.EXACTLY) ? measureWidth: width, (measureHeightMode == MeasureSpec.EXACTLY) ? measureHeight: height);  
  26. }  
最关键的地方是改了这句:
[java] view plain copy
  1. MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();  
  2. int childHeight = child.getMeasuredHeight()+lp.topMargin+lp.bottomMargin;  
  3. int childWidth = child.getMeasuredWidth()+lp.leftMargin+lp.rightMargin;  
通过 child.getLayoutParams()获取child对应的LayoutParams实例,将其强转成MarginLayoutParams;
然后在计算childHeight时添加上顶部间距和底部间距。计算childWidth时添加上左边间距和右边间距。
也就是说,我们在计算宽度和高度时不仅考虑到子控件的本身的大小还要考虑到子控件间的间距问题。

(4)、重写onLayout()函数

同样,我们在布局时仍然将间距加到控件里就好了,完整代码如下:
[java] view plain copy
  1. @Override  
  2. protected void onLayout(boolean changed, int l, int t, int r, int b) {  
  3.     int top = 0;  
  4.     int count = getChildCount();  
  5.     for (int i=0;i<count;i++) {  
  6.   
  7.         View child = getChildAt(i);  
  8.   
  9.         MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();  
  10.         int childHeight = child.getMeasuredHeight()+lp.topMargin+lp.bottomMargin;  
  11.         int childWidth = child.getMeasuredWidth()+lp.leftMargin+lp.rightMargin;  
  12.   
  13.         child.layout(0, top, childWidth, top + childHeight);  
  14.         top += childHeight;  
  15.     }  
  16. }  
在这里同样在布局子控件时,添加上子控件间的间距,具体就不讲了,很容易理解。
最终的效果图如下:

从效果图中可以明显的看到每个ITEM都添加上了间距了。

源码在文章底部给出

2、原理

上面我们看了要重写generateDefaultLayoutParams()函数才能获取控件的margin间距。那为什么要重写呢?下面这句就为什么非要强转呢?

[java] view plain copy
  1. MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();  
下面我们来看看这么做的原因。
首先,在container在初始化子控件时,会调用LayoutParams generateLayoutParams(LayoutParams p)来为子控件生成对应的布局属性,但默认只是生成layout_width和layout_height所以对应的布局参数,即在正常情况下的generateLayoutParams()函数生成的LayoutParams实例是不能够取到margin值的。即:
[java] view plain copy
  1. /** 
  2. *从指定的XML中获取对应的layout_width和layout_height值 
  3. */  
  4. public LayoutParams generateLayoutParams(AttributeSet attrs) {  
  5.     return new LayoutParams(getContext(), attrs);  
  6. }  
  7. /* 
  8. *如果要使用默认的构造方法,就生成layout_width="wrap_content"、layout_height="wrap_content"对应的参数 
  9. */  
  10. protected LayoutParams generateDefaultLayoutParams() {  
  11.      return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);  
  12. }  
所以,如果我们还需要margin相关的参数就只能重写generateLayoutParams()函数了:
[java] view plain copy
  1. public LayoutParams generateLayoutParams(AttributeSet attrs) {  
  2.     return new MarginLayoutParams(getContext(), attrs);  
  3. }  
由于generateLayoutParams()的返回值是LayoutParams实例,而MarginLayoutParams是派生自LayoutParam的;所以根据类的多态的特性,可以直接将此时的LayoutParams实例直接强转成MarginLayoutParams实例;
所以下面这句在这里是不会报错的:
[java] view plain copy
  1. MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();  
大家也可以为了安全起见利用instanceOf来做下判断,如下:
[java] view plain copy
  1. MarginLayoutParams lp = null  
  2. if (child.getLayoutParams() instanceof  MarginLayoutParams) {  
  3.     lp = (MarginLayoutParams) child.getLayoutParams();  
  4.     …………  
  5. }  
所以整体来讲,就是利用了类的多态特性!下面来看看MarginLayoutParams和generateLayoutParams()都做了什么。

3、MarginLayoutParams与generateLayoutParams()的实现

写在前面:本部分涉及自定义控件属性的内容,如果对于TypedArray和自定义控件属性不明白的同学请先移动<PullScrollView详解(一)——自定义控件属性>

(1)generateLayoutParams()实现

首先,我们看看generateLayoutPararms()都做了什么吧,它是怎么得到布局值的:

[java] view plain copy
  1. //位于ViewGrop.java中  
  2. public LayoutParams generateLayoutParams(AttributeSet attrs) {  
  3.     return new LayoutParams(getContext(), attrs);  
  4. }  
  5. public LayoutParams(Context c, AttributeSet attrs) {  
  6.     TypedArray a = c.obtainStyledAttributes(attrs, R.styleable.ViewGroup_Layout);  
  7.     setBaseAttributes(a,  
  8.             R.styleable.ViewGroup_Layout_layout_width,  
  9.             R.styleable.ViewGroup_Layout_layout_height);  
  10.     a.recycle();  
  11. }  
  12. protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) {  
  13.     width = a.getLayoutDimension(widthAttr, "layout_width");  
  14.     height = a.getLayoutDimension(heightAttr, "layout_height");  
  15. }  
从上面的代码中明显可以看出,generateLayoutParams()调用LayoutParams()产生布局信息,而LayoutParams()最终调用setBaseAttributes()来获得对应的宽,高属性。
这里是通过TypedArray对自定义的XML进行值提取的过程,难度不大,不再细讲。从这里也可以看到,generateLayoutParams生成的LayoutParams属性只有layout_width和layout_height的属性值。
2、MarginLayoutParams实现

下面再来看看MarginLayoutParams的具体实现,其实通过上面的过程,大家也应该想到,它也是通过TypeArray来解析自定义属性来获得用户的定义值的(大家看到长代码不要害怕,先列出完整代码,下面会分段讲):

[java] view plain copy
  1. public MarginLayoutParams(Context c, AttributeSet attrs) {  
  2.     super();  
  3.   
  4.     TypedArray a = c.obtainStyledAttributes(attrs, R.styleable.ViewGroup_MarginLayout);  
  5.     int margin = a.getDimensionPixelSize(  
  6.             com.android.internal.R.styleable.ViewGroup_MarginLayout_layout_margin, -1);  
  7.     if (margin >= 0) {  
  8.         leftMargin = margin;  
  9.         topMargin = margin;  
  10.         rightMargin= margin;  
  11.         bottomMargin = margin;  
  12.     } else {  
  13.        leftMargin = a.getDimensionPixelSize(  
  14.                R.styleable.ViewGroup_MarginLayout_layout_marginLeft,  
  15.                UNDEFINED_MARGIN);  
  16.        rightMargin = a.getDimensionPixelSize(  
  17.                R.styleable.ViewGroup_MarginLayout_layout_marginRight,  
  18.                UNDEFINED_MARGIN);  
  19.   
  20.        topMargin = a.getDimensionPixelSize(  
  21.                R.styleable.ViewGroup_MarginLayout_layout_marginTop,  
  22.                DEFAULT_MARGIN_RESOLVED);  
  23.   
  24.        startMargin = a.getDimensionPixelSize(  
  25.                R.styleable.ViewGroup_MarginLayout_layout_marginStart,  
  26.                DEFAULT_MARGIN_RELATIVE);  
  27.        endMargin = a.getDimensionPixelSize(  
  28.                R.styleable.ViewGroup_MarginLayout_layout_marginEnd,  
  29.                DEFAULT_MARGIN_RELATIVE);  
  30.     }  
  31.     a.recycle();  
  32. }  
这段代码分为两部分:
第一部分:提取layout_margin的值并设置
[java] view plain copy
  1. TypedArray a = c.obtainStyledAttributes(attrs, R.styleable.ViewGroup_MarginLayout);  
  2. int margin = a.getDimensionPixelSize(  
  3.         com.android.internal.R.styleable.ViewGroup_MarginLayout_layout_margin, -1);  
  4. if (margin >= 0) {  
  5.     leftMargin = margin;  
  6.     topMargin = margin;  
  7.     rightMargin= margin;  
  8.     bottomMargin = margin;  
  9. else {  
  10.   …………  
  11. }  
在这段代码中就是通过提取layout_margin的值来设置上,下,左,右边距的。
第二部分:如果用户没有设置layout_margin,而是单个设置的,那么就一个个提取,代码如下:
[java] view plain copy
  1. leftMargin = a.getDimensionPixelSize(  
  2.         R.styleable.ViewGroup_MarginLayout_layout_marginLeft,  
  3.         UNDEFINED_MARGIN);  
  4. rightMargin = a.getDimensionPixelSize(  
  5.         R.styleable.ViewGroup_MarginLayout_layout_marginRight,  
  6.         UNDEFINED_MARGIN);  
  7.   
  8. topMargin = a.getDimensionPixelSize(  
  9.         R.styleable.ViewGroup_MarginLayout_layout_marginTop,  
  10.         DEFAULT_MARGIN_RESOLVED);  
  11.   
  12. startMargin = a.getDimensionPixelSize(  
  13.         R.styleable.ViewGroup_MarginLayout_layout_marginStart,  
  14.         DEFAULT_MARGIN_RELATIVE);  
  15. endMargin = a.getDimensionPixelSize(  
  16.         R.styleable.ViewGroup_MarginLayout_layout_marginEnd,  
  17.         DEFAULT_MARGIN_RELATIVE);  
这里就是对layout_marginLeft、layout_marginRight、layout_marginTop、layout_marginBottom的值一个个提取的过程。难度不大,也没什么好讲的了。
从这里大家也可以看到为什么非要重写generateLayoutParams()函数了,就是因为默认的generateLayoutParams()函数只会提取layout_width、layout_height的值,只有MarginLayoutParams()才具有提取margin间距的功能!!!!

结论:              

 1.一定要注意的一点是:getMeasureWidth()方法在measure()过程结束后就可以获取到了,而getWidth()方法要在layout()过程结束后才能获取到。

    2.从这里大家也可以看到为什么非要重写generateLayoutParams()函数了,就是因为默认的generateLayoutParams()函数只会提取layout_width、layout_height的值,只有MarginLayoutParams()才具有提取margin间距的功能!!!!