美文网首页Android UI安卓自定义View琐碎知识点
Android自定义View高级(一)-分类与流程

Android自定义View高级(一)-分类与流程

作者: 蓝枫zeke | 来源:发表于2017-01-19 15:56 被阅读145次

    一.自定义View绘制流程

    Paste_Image.png

    二.自定义View分类

    • 自定义ViewGroup
      自定义ViewGroup一般是利用现有的组件根据特定的布局方式来组成新的组件,大多继承自ViewGroup或各种Layout。

    • 自定义View
      在没有现成的View,需要自己实现的时候,就使用自定义View,一般继承自View,SurfaceView或其他的View。

    三.几个重要的函数

    构造函数

    构造函数是View的入口,可以用于初始化一些的内容,和获取自定义属性。
    View的构造函数有四种重载分别如下:

    
        public CustomView(Context context)
        {
            super(context);
        }
    
        public CustomView(Context context, AttributeSet attrs)
        {
            super(context, attrs);
        }
    
        public CustomView(Context context, AttributeSet attrs, int defStyleAttr)
        {
            super(context, attrs, defStyleAttr);
        }
    
        public CustomView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) 
        {
            super(context, attrs, defStyleAttr, defStyleRes);
        }
    

    有四个参数的构造函数在API21的时候才添加上,暂不考虑。

    有三个参数的构造函数中第三个参数是默认的Style,这里的默认的Style是指它在当前Application或Activity所用的Theme中的默认Style,且只有在明确调用的时候才会生效,以系统中的ImageButton为例说明:

    public ImageButton(Context context, AttributeSet attrs) {
        //调用了三个参数的构造函数,明确指定第三个参数
        this(context, attrs, com.android.internal.R.attr.imageButtonStyle);
    }
    
    public ImageButton(Context context, AttributeSet attrs, int defStyleAttr) {
        //此处调了四个参数的构造函数,无视即可
        this(context, attrs, defStyleAttr, 0); 
    }
    
    

    注意:即使你在View中使用了Style这个属性也不会调用三个参数的构造函数,所调用的依旧是两个参数的构造函数。

    由于三个参数的构造函数第三个参数一般不用,暂不考虑,第三个参数的具体用法会在以后用到的时候详细介绍。

    排除了两个之后,只剩下一个参数和两个参数的构造函数,他们的详情如下:

    //一般在直接New一个View的时候调用。
    public void CustomView(Context context) {}
    
    //一般在layout文件中使用的时候会调用,关于它的所有属性(包括自定义属性)都会包含在attrs中传递进来。
    public void CustomView(Context context, AttributeSet attrs) {}
    

    以下方法调用的是一个参数的构造函数:

    //在Activity中
    CustomView customView = new CustomView(this);
    ```
    
    以下方法调用的是两个参数的构造函数:
    
    ```
     <com.zhoujian.viewevent.view.CustomView
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"/>
    ```
    
    ###测量View大小(onMeasure)
    
    为什么要测量View大小?
    
    View的大小不仅由自身所决定,同时也会受到父控件的影响,为了我们的控件能更好的适应各种情况,一般会自己进行测量。
    
    测量View大小使用的是onMeasure函数,我们可以从onMeasure的两个参数中取出宽高的相关数据:
    
    ```
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int widthsize  MeasureSpec.getSize(widthMeasureSpec);      //取出宽度的确切数值
        int widthmode  MeasureSpec.getMode(widthMeasureSpec);      //取出宽度的测量模式
        
        int heightsize  MeasureSpec.getSize(heightMeasureSpec);    //取出高度的确切数值
        int heightmode  MeasureSpec.getMode(heightMeasureSpec);    //取出高度的测量模式
    }
    ```
    
    从上面可以看出 onMeasure 函数中有 widthMeasureSpec 和 heightMeasureSpec 这两个 int 类型的参数, 毫无疑问他们是和宽高相关的, 但它们其实不是宽和高, 而是由宽、高和各自方向上对应的测量模式来合成的一个值:
    
    测量模式一共有三种, 被定义在 Android 中的 View 类的一个内部类View.MeasureSpec中:
    
    
    | 模式              | 描述  |
    |:-------------:|:-----:|
    | UNSPECIFIED      | 默认值,父控件没有给子view任何限制,子View可以设置为任意大小 |
    | EXACTLY      |  表示父控件已经确切的指定了子View的大小|
    | AT_MOST  |    表示子View具体大小没有尺寸限制,但是存在上限,上限一般为父View大小 |
    
    
    注意: 用 MeasureSpec 的 getSize是获取数值, getMode是获取模式。如果对View的宽高进行修改了,不要调用 super.onMeasure( widthMeasureSpec, heightMeasureSpec); 要调用 setMeasuredDimension( widthsize, heightsize); 这个函数。
    
    
    
    ###确定View大小(onSizeChanged)
    
    这个函数在视图大小发生改变时调用。
    
    在测量完View并使用setMeasuredDimension函数之后View的大小基本上已经确定了,那么为什么还要再次确定View的大小呢?
    
    这是因为View的大小不仅由View本身控制,而且受父控件的影响,所以我们在确定View大小的时候最好使用系统提供的onSizeChanged回调函数。
    
    ```
    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
    }
    
    ```
    
    可以看出,它又四个参数,分别为 宽度,高度,上一次宽度,上一次高度。
    
    这个函数比较简单,我们只需关注 宽度(w), 高度(h) 即可,这两个参数就是View最终的大小。
    
    
    ###确定子View布局位置(onLayout)
    
    确定布局的函数是onLayout,它用于确定子View的位置,在自定义ViewGroup中会用到,他调用的是子View的layout函数。
    
    在自定义ViewGroup中,onLayout一般是循环取出子View,然后经过计算得出各个子View位置的坐标值,然后用以下函数设置子View位置。
    
    ```
    child.layout(l, t, r, b);
    ```
    
    四个参数分别为:
    
    
    | 名称        | 说明           | 对应的函数  |
    | :-------------: |:-------------:| :-----:|
    |l      | View左侧距父View左侧的距离 |  getLeft(); |
    |t       | View顶部距父View顶部的距离      |  getTop(); |
    | r | View右侧距父View左侧的距离    | getRight(); |
    | b | View底部距父View顶部的距离    | getBottom();|
    
        
    
    ###绘制内容(onDraw)
    
    onDraw是实际绘制的部分,也就是我们真正关心的部分,使用的是Canvas绘图。
    
    ```
    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
    }
    ```
    
    
    
    ###完整的代码
    
    ```
    package com.zhoujian.viewevent.view;
    
    import android.content.Context;
    import android.graphics.Canvas;
    import android.graphics.Color;
    import android.util.AttributeSet;
    import android.view.View;
    
    /**
     * Created by zhoujian on 2017/1/19.
     */
    
    public class CustomView extends View {
    
    
        public CustomView(Context context)
        {
            super(context);
        }
    
        /**
         * 初始化一些的内容,和获取自定义属性。
         * @param context
         * @param attrs
         */
    
        public CustomView(Context context, AttributeSet attrs)
        {
            super(context, attrs);
        }
    
        public CustomView(Context context, AttributeSet attrs, int defStyleAttr)
        {
            super(context, attrs, defStyleAttr);
        }
    
    
        /**
         * 测量view大小
         * @param widthMeasureSpec
         * @param heightMeasureSpec
         */
        @Override
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
        {
            int widthsize = MeasureSpec.getSize(widthMeasureSpec);      //取出宽度的确切数值
            int widthmode = MeasureSpec.getMode(widthMeasureSpec);      //取出宽度的测量模式
            int heightsize = MeasureSpec.getSize(heightMeasureSpec);    //取出高度的确切数值
            int heightmode = MeasureSpec.getMode(heightMeasureSpec);    //取出高度的测量模式
            setMeasuredDimension(widthsize,heightsize);
        }
    
        /**
         * 确定view大小
         * @param w
         * @param h
         * @param oldw
         * @param oldh
         */
    
        @Override
        protected void onSizeChanged(int w, int h, int oldw, int oldh)
        {
            super.onSizeChanged(w, h, oldw, oldh);
        }
    
        /**
         * 确定子View布局位置
         * @param changed
         * @param left
         * @param top
         * @param right
         * @param bottom
         */
    
        @Override
        protected void onLayout(boolean changed, int left, int top, int right, int bottom)
        {
            super.onLayout(changed, left, top, right, bottom);
        }
    
        /**
         * 绘制内容
         * @param canvas
         */
    
        @Override
        protected void onDraw(Canvas canvas)
        {
            canvas.drawColor(Color.RED); //绘制蓝色
        }
    }
    
    ```
    
    
    ###对外提供操作方法和监听回调
    
    自定义完View之后,一般会对外暴露一些接口,用于控制View的状态等,或者监听View的变化.
    
    ###参考文章
    
    [@GcsSloop:安卓自定义View进阶-分类与流程]{http://www.gcssloop.com/customview/CustomViewProcess}

    相关文章

      网友评论

        本文标题:Android自定义View高级(一)-分类与流程

        本文链接:https://www.haomeiwen.com/subject/wmjibttx.html