Android ViewGroup的自定义

案例:自定义一个ViewGroup,将子view进行流式布局


image.png

流程:

  1. 测量子view的大小 → onMeasure
    测量每一个子view的宽和高,待摆放的子view的宽度如果小于当前行的剩余宽度则
    放进入,否则将其摆放到下一行。
  2. 摆放子view的位置 → onLayout (必须)
    遍历记录的每一行所有子view和每一行的高对子view进行摆放
  3. 对子view进行绘制 → onDraw
    当前案例无需重构此方法
    布局如下图


    image.png

public class FlowLayout extends ViewGroup {

    private int mHorizontalSpacing = dp2px(16); //每个item横向间距
    private int mVerticalSpacing = dp2px(8); //每个item横向间距

    private List<List<View>> allLines;// 记录所有的行,一行一行的存储
    private List<Integer> heights; // 记录每一行的行高

    public FlowLayout(Context context) {
        super(context);
    }

    public FlowLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

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

    private void initMeasureParams() {
        allLines = new ArrayList<>();
        heights = new ArrayList<>();
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
//        super.onMeasure(widthMeasureSpec, heightMeasureSpec);

        initMeasureParams(); //此方法不能在构造函数调用,生命周期

        int selfWidth = MeasureSpec.getSize(widthMeasureSpec); //获取当前类控件的宽度
        //获取内间距以便通过getChildMeasureSpec方法获取子view的度量规则
        int paddingLeft = getPaddingLeft();
        int paddingRight = getPaddingRight();
        int paddingTop = getPaddingTop();
        int paddingBottom = getPaddingBottom();

        int childCount = getChildCount(); //或者子view的数量
        int lineWidthUsed = 0;  //当前行已占用了的宽度
        int lineHeight = 0;     //当前行占用最大的高度

        List<View> lineViews = new ArrayList<>(); //记录每一行所摆放的控件
        int parentNeededWidth = 0;  //当前类控件至少所需要的宽度
        int parentNeededHeight = 0; //当前类控件至少所需要的高度

        //遍历子view进行度量,以便能获取度量之后的尺寸大小
        // childView.getMeasuredWidth()是取度量之后的大小,childView.getWidth()是取onLayout之后的大小,这里需要前者
        for (int i = 0; i < childCount; i++) {
            //获取子View;
            View childView = getChildAt(i);
            LayoutParams childLP = childView.getLayoutParams();
            //获取子view的度量规则
            int childWidthMeasureSpec = getChildMeasureSpec(widthMeasureSpec,paddingLeft + paddingRight, childLP.width);
            int childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec, paddingTop + paddingBottom, childLP.height);
            //度量子view、设置子View的尺寸
            childView.measure(childWidthMeasureSpec, childHeightMeasureSpec);

            //确定是否换行
            int childMeasureWidth = childView.getMeasuredWidth();
            int childMeasureHeight = childView.getMeasuredHeight();
            if (childMeasureWidth + lineWidthUsed + mHorizontalSpacing > selfWidth) {
                allLines.add(lineViews);
                heights.add(lineHeight);

                parentNeededHeight = parentNeededHeight + lineHeight + mVerticalSpacing;
                parentNeededWidth = Math.max(parentNeededWidth, lineWidthUsed + mHorizontalSpacing);
                lineViews = new ArrayList<>();
                lineWidthUsed = 0;
                lineHeight = 0;

            }

            lineViews.add(childView);
            lineWidthUsed = lineWidthUsed + childMeasureWidth + mHorizontalSpacing;
            lineHeight = Math.max(lineHeight, childMeasureHeight);

            //最后一个子view所在的那一行需要手动加入
            if(i == childCount - 1){
                allLines.add(lineViews);
                heights.add(lineHeight);
                parentNeededHeight = parentNeededHeight + lineHeight + mVerticalSpacing;
                parentNeededWidth = Math.max(parentNeededWidth, lineWidthUsed + mHorizontalSpacing);
            }
            
        }

        //确定流式布局自身的宽高
        int widthMode = MeasureSpec.getMode(widthMeasureSpec);
        int heightMode = MeasureSpec.getMode(heightMeasureSpec);
        int selfHeight = MeasureSpec.getSize(heightMeasureSpec);

        int realWidth = (widthMode == MeasureSpec.EXACTLY) ? selfWidth : parentNeededWidth;
        int realHeight = (heightMode == MeasureSpec.EXACTLY) ? selfHeight : parentNeededHeight;
        setMeasuredDimension(realWidth,realHeight); //度量之后存储该类控件自身宽高值,否则将触发测量时出现异常
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        int lineCount = allLines.size();
        int curX = getPaddingLeft(); //设置子view左边的起始位置
        int curT = getPaddingTop();  //设置子view顶部的起始位置

        for (int i = 0; i < lineCount; i++) {
            List<View> lineViews = allLines.get(i);
            int lineHeight = heights.get(i);
            for (int j = 0; j < lineViews.size(); j++) {
                View view = lineViews.get(j);
                int left = curX;
                int top = curT;
                int right = left + view.getMeasuredWidth();
                int bottom = top + view.getMeasuredHeight();
                view.layout(left, top, right, bottom); //参数值是子view距离当前控件的四个距离
                curX = right + mHorizontalSpacing;
            }
            curT = curT + lineHeight + mVerticalSpacing;
            curX = getPaddingLeft();
        }
    }

    public static int dp2px(int dp) {
        return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, Resources.getSystem().getDisplayMetrics());
    }


}

总结知识点:

度量规则MeasureSpec:
是view的内部类,里面定义了三个int类型的变量来表示三种模式:据传入的SpecSize来确定SpecMode, 如果传入的SpecSize是Match_parent或者是精确值,SpecMode是EXACTY,如果传入的是Wrap_content的话,SpecMode是AT_MOST, 若不对VIew的大小做出限制的话,比如listview、recycleview这些的SpecMode就是UNSPECIFIED;widthMeasureSpec和heightMeasureSpec是32位的int类型,其中包括了模式和尺寸大小,前两位表示模式,后30位表示尺寸大小。

//通过度量规则获取尺寸大小
MeasureSpec.getSize(MeasureSpec)
//获取子view的度量规则
getChildMeasureSpec(当前view的度量规则,paddingLeft + paddingRight, 子view的LayoutParams的宽高)
//对子view进行度量之后才能获取度量之后的准确值
childView.measure(childWidthMeasureSpec, childHeightMeasureSpec);
//在度量阶段获取子view的大小要取度量之后的值
int childMeasureWidth = childView.getMeasuredWidth();
// 获取度量规则的模式
int widthMode = MeasureSpec.getMode(widthMeasureSpec);
//度量之后存储该类控件自身宽高值(度量自己),否则将触发测量时出现异常
setMeasuredDimension(realWidth,realHeight);

//获取该view到父view的距离
int left = getLeft();
//对子view进行layout摆放,方法参数是子view到父view的四个距离
view.layout(left, top, right, bottom); 
//MotionEvent中 get()和getRaw()的区别
//get() :触摸点相对于其所在组件坐标系的坐标
//getRaw() :触摸点相对于屏幕默认坐标系的坐标
1585727817(1).jpg
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352

推荐阅读更多精彩内容