Android的自定义View浅析

来源:互联网 发布:网络机柜接线图视频 编辑:程序博客网 时间:2024/06/04 19:23

1、自定义View我们大部分时候只需重写两个函数:onMeasure()、onDraw()。onMeasure负责对当前View的尺寸进行测量,onDraw负责把当前这个View绘制出来。

2、要写2个构造函数:

    public MyView(Context context) {           super(context);    }    public MyView(Context context, AttributeSet attrs) {        super(context, attrs);     }
3、onMeasure()
3.1、protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) 
3.2、一个int整数,里面放了测量模式和尺寸大小。这里的的尺寸大小并不是最终我们的View的尺寸大小,而是父View提供的参考大小。

3.3、测量模式是干啥用的呢?

4、onDraw()

4.1、 protected void onDraw(Canvas canvas)

4.2、直接在画板Canvas对象上绘制

5、自定义属性

5.1、首先我们需要在res/values/styles.xml文件里面声明一个我们自定义的属性,例如

<resources>    <!--name为声明的"属性集合"名,可以随便取,但是最好是设置为跟我们的View一样的名称-->    <declare-styleable name="MyView">        <!--声明我们的属性,名称为default_size,取值类型为尺寸类型(dp,px等)-->        <attr name="default_size" format="dimension" />    </declare-styleable></resources>

5.2、接下来就是在布局文件用上我们的自定义的属性,需要在根标签(LinearLayout)里面设定命名空间,命名空间名称可以随便取,比如hc,命名空间后面取得值是固定的:"http://schemas.android.com/apk/res-auto",例如

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:hc="http://schemas.android.com/apk/res-auto"    android:layout_width="match_parent"    android:layout_height="match_parent">     <com.hc.studyview.MyView        android:layout_width="match_parent"        android:layout_height="100dp"        hc:default_size="100dp" /></LinearLayout>
5.3、最后就是在我们的自定义的View里面把我们自定义的属性的值取出来,在构造函数中有个AttributeSet属性,就是靠它帮我们把布局里面的属性取出来,例如

  private int defalutSize;  public MyView(Context context, AttributeSet attrs) {      super(context, attrs);      //第二个参数就是我们在styles.xml文件中的<declare-styleable>标签        //即属性集合的标签,在R文件中名称为R.styleable+name        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.MyView);        //第一个参数为属性集合里面的属性,R文件名称:R.styleable+属性集合名称+下划线+属性名称        //第二个参数为,如果没有设置这个属性,则设置的默认的值        defalutSize = a.getDimensionPixelSize(R.styleable.MyView_default_size, 100);        //最后记得将TypedArray对象回收        a.recycle();   }



6、自定义ViewGroup
6.1、自定义ViewGroup,它不仅要管好自己的,还要兼顾它的子View。ViewGroup是个View容器,它装纳child View并且负责把child View放入指定的位置。

6.2、设计ViewGroup的思路

6.2.1、首先,我们需要知道各个子View的大小,这样我们才知道当前的ViewGroup该设置为多大去容纳它们。

6.2.2、根据子View的大小,以及我们的ViewGroup要实现的功能,决定出ViewGroup的大小。

6.2.3、ViewGroup和子View的大小算出来了之后,接下来就是去摆放了,这得根据你定制的需求去摆放了,比如,你想让子View按照垂直顺序一个挨着一个放,或者是按照先后顺序一个叠一个去放等。

6.2.4、已经知道怎么去摆放还不行啊,决定了怎么摆放就是相当于把已有的空间”分割”成大大小小的空间,每个空间对应一个子View,我们接下来就是把子View对号入座了,把它们放进它们该放的地方去


6.3、自定义ViewGroup的实现

6.3.1、首先重写onMeasure,实现测量子View大小以及设定ViewGroup的大小:

    @Override    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {        super.onMeasure(widthMeasureSpec, heightMeasureSpec);        //将所有的子View进行测量,这会触发每个子View的onMeasure函数        //注意要与measureChild区分,measureChild是对单个view进行测量        measureChildren(widthMeasureSpec, heightMeasureSpec);        int widthMode = MeasureSpec.getMode(widthMeasureSpec);        int widthSize = MeasureSpec.getSize(widthMeasureSpec);        int heightMode = MeasureSpec.getMode(heightMeasureSpec);        int heightSize = MeasureSpec.getSize(heightMeasureSpec);        int childCount = getChildCount();        if (childCount == 0) {//如果没有子View,当前ViewGroup没有存在的意义,不用占用空间            setMeasuredDimension(0, 0);        } else {            //如果宽高都是包裹内容            if (widthMode == MeasureSpec.AT_MOST && heightMode == MeasureSpec.AT_MOST) {                //我们将高度设置为所有子View的高度相加,宽度设为子View中最大的宽度                int height = getTotleHeight();                int width = getMaxChildWidth();                setMeasuredDimension(width, height);            } else if (heightMode == MeasureSpec.AT_MOST) {//如果只有高度是包裹内容                //宽度设置为ViewGroup自己的测量宽度,高度设置为所有子View的高度总和                setMeasuredDimension(widthSize, getTotleHeight());            } else if (widthMode == MeasureSpec.AT_MOST) {//如果只有宽度是包裹内容                //宽度设置为子View中宽度最大的值,高度设置为ViewGroup自己的测量值                setMeasuredDimension(getMaxChildWidth(), heightSize);            }        }    }    /***     * 获取子View中宽度最大的值     */    private int getMaxChildWidth() {        int childCount = getChildCount();        int maxWidth = 0;        for (int i = 0; i < childCount; i++) {            View childView = getChildAt(i);            if (childView.getMeasuredWidth() > maxWidth)                maxWidth = childView.getMeasuredWidth();        }        return maxWidth;    }    /***     * 将所有子View的高度相加     **/    private int getTotleHeight() {        int childCount = getChildCount();        int height = 0;        for (int i = 0; i < childCount; i++) {            View childView = getChildAt(i);            height += childView.getMeasuredHeight();        }        return height;    }
6.3.2、onMeasure将子View测量好了,以及把自己的尺寸也设置好了,接下来就是去摆放子View
 @Override    protected void onLayout(boolean changed, int l, int t, int r, int b) {        int count = getChildCount();        //记录当前的高度位置        int curHeight = t;        //将子View逐个摆放        for (int i = 0; i < count; i++) {            View child = getChildAt(i);            int height = child.getMeasuredHeight();            int width = child.getMeasuredWidth();            //摆放子View,参数分别是子View矩形区域的左、上、右、下边            child.layout(l, curHeight, l + width, curHeight + height);            curHeight += height;        }    }