自定义控件重点方法解析

自定义控件(继承ViewGroup)方法:

onMeasure() : 专门处理组件的大小和宽高
onLayout() : 处理所有的child安排大小和摆放位置
onDraw() : 绘制自定义控件
onTouchEvent(): 点击事件处理

接下来将进行深入的解析每个方法:

onMeasure()的处理:

1)组件位置发生变化
2)子控件回调了onMeasure方法,父view一定也会回调onMeasure方法
3)onMeasure方法回调后,一定会回调onLayout方法
4)onMeasure()方法传入的参数,通过MeasureSpec类来进行组件大小模式的处理。

//获取该组件的实际宽度
    private int measureWidth(int widthMeasureSpec) {
        int specMode =MeasureSpec.getMode(widthMeasureSpec);
        int specSize = MeasureSpec.getSize(widthMeasureSpec);
        int result = 400;
        if(specMode == MeasureSpec.AT_MOST){
            //WRAP_CONTENT 最大模式 其中的子组件可以根据自己的规定的尺寸进行展示
            result = specSize;
        }else if(specMode == MeasureSpec.EXACTLY){
            //精确的模式,它规定子组件确定的大小,无论子组件多大,子组件必须按照确定大小进行展示
            result = specSize;
        }
        return result;
    }

5)通过setMeasuredDimension()方法设置组件的实际展示宽高。

onLayout的处理

  1. onLayout的作用是给所有的child安排大小和摆放位置。一般ViewGroup使用。
@Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        LogUtil.i("onLayout");
        int count = getChildCount();
        int width = getWidth();
        Log.i("TAG", "宽度 :"+width);
        for (int i = 0 ; i < count; i++){
            View childView = getChildAt(i);
            int w = childView.getMeasuredWidth();
            int h = childView.getMeasuredHeight();
            int x = listX.get(i);
            int y = listY.get(i);
            childView.layout(x, y, x + w, y + h);
        }
    }

完整的代码如下:

package com.ml.weihenji.widgets;

import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;

import com.ml.weihenji.utils.LogUtil;

import java.util.ArrayList;

/**
 * Created by malei on 2017/6/14.
 * 自定义自动换行viewGroup
 */

public class LineWrapLayout extends ViewGroup{

    private ArrayList<Integer> listX; //保存每一个子控件的起始x坐标
    private ArrayList<Integer> listY;  //保存每一个子控件的起始y坐标

    private int paddingLeft = 10;  //左间距
    private int paddingRight = 10;   //右间距
    private int paddingTop = 10;
    private int paddingBottom = 10;
    private int horizontalSpace = 10;  //水平方向间距
    private int verticalSpace = 5;    //行间距


    public LineWrapLayout(Context context) {
        this(context,null);
    }

    public LineWrapLayout(Context context, AttributeSet attrs) {
        this(context, attrs,0);
    }

    public LineWrapLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(attrs);
    }

    private void init(AttributeSet attrs) {
        listX = new ArrayList<>();
        listY = new ArrayList<>();
    }

    /**
     * layout的作用是给所有的child安排大小和摆放位置。
     */
    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        LogUtil.i("onLayout");
        int count = getChildCount();
        int width = getWidth();
        Log.i("TAG", "宽度 :"+width);
        for (int i = 0 ; i < count; i++){
            View childView = getChildAt(i);
            int w = childView.getMeasuredWidth();
            int h = childView.getMeasuredHeight();
            int x = listX.get(i);
            int y = listY.get(i);
            childView.layout(x, y, x + w, y + h);
        }
    }

    /**
     * 1.onMeasure方法会在view的位置信息发生变化或调用。
     * 2.子view回调了onMeasure方法,父view一定也会回调onMeasure方法。
     * 3.onMeasure方法回调后,一定会回调onLayout方法。
     *
     * UNSPECIFIED:父布局没有给子布局任何限制,子布局可以任意大小。
       EXACTLY:父布局决定子布局的确切大小。不论子布局多大,它都必须限制在这个界限里。
       AT_MOST:子布局可以根据自己的大小选择任意大小

     */
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        LogUtil.i("onMeasure");

        int count = getChildCount(); //获取子组件的个数
        int width = measureWidth(widthMeasureSpec);
        Log.i("TAG", "宽度 :"+width);

        int startOffsetX = paddingLeft;// 横坐标开始
        int startOffsety = 0+paddingTop;//纵坐标开始

        int rowCount = 1;  //行数目
        int preEndOffsetX = startOffsetX;

        listX.clear();
        listY.clear();

        //处理子组件的大小宽高
        for (int i = 0; i < count; i++){
            Log.i("TAG", "----");
            final View childView = getChildAt(i);
            // TODO: 2017/6/14  为什么要这么做?
            childView.measure(0,0);
            int childWidth = childView.getMeasuredWidth(); //子控件宽高
            int childHeight = childView.getMeasuredHeight();
            Log.v("TAG", "childWidth :"+childWidth+" childHeight :"+childHeight);
            preEndOffsetX = startOffsetX + childWidth;  //进行累计一行子组件共有宽度

            //当子组件的宽度大于一行的时候
            if(preEndOffsetX > width - paddingRight){
                if(startOffsetX > paddingLeft){
                    //换行
                    startOffsetX = paddingLeft;
                    startOffsety += childHeight+verticalSpace;
                    rowCount++;
                }
            }

            listX.add(startOffsetX);
            listY.add(startOffsety);  //不停会增加

            startOffsetX = startOffsetX + childWidth + horizontalSpace; //下一个子组件的x坐标是 累计的x+上一个组件的宽度+间隔
        }

        int lastLineHeight = 0;
        View lastChild = getChildAt(count-1);
        if(null != lastChild){
            lastLineHeight = lastChild.getMeasuredHeight(); //获取最后一个子控件的高度
        }
        setMeasuredDimension(measureWidth(widthMeasureSpec), startOffsety+lastLineHeight+paddingBottom);
    }

    //获取该组件的实际宽度
    private int measureWidth(int widthMeasureSpec) {
        int specMode =MeasureSpec.getMode(widthMeasureSpec);
        int specSize = MeasureSpec.getSize(widthMeasureSpec);
        int result = 400;
        if(specMode == MeasureSpec.AT_MOST){
            //WRAP_CONTENT 最大模式 其中的子组件可以根据自己的规定的尺寸进行展示
            result = specSize;
        }else if(specMode == MeasureSpec.EXACTLY){
            //精确的模式,它规定子组件确定的大小,无论子组件多大,子组件必须按照确定大小进行展示
            result = specSize;
        }
        return result;
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        return super.onTouchEvent(event);
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容