流式布局FlowLayout-view的测量onMeasure和布局onLayout

最近用到流式布局,但是网上找到的开源的流式布局里面一些功能没有,所以就自己写了一个,增加了对齐方式的功能,后续增加滑动功能,代码使用的Kotlin方式,不懂的可以评论回复。
相关源码地址:https://github.com/xingkongyu/FlowLayoutX
主要代码如下:

Kotlin版本:

package com.cc.congdy

import android.content.Context
import android.util.AttributeSet
import android.view.View
import android.view.ViewGroup

/**
 * 请描述使用该类使用方法!!!
 *
 * @author 陈聪 2018-06-14 10:17
 */
class FlowLayout(context: Context, attributeSet: AttributeSet) : ViewGroup(context, attributeSet) {

    /**
     * 用于记录child距离顶部距离
     */
    private var childTopOffsets: HashMap<View, Int> = HashMap()
    /**
     * 用于记录child距离左侧距离--用于配置所有标签位置显示
     * 配合gravity使用
     */
    private var childOffsets: HashMap<Int, Int> = HashMap()
    /**
     * 用于记录当前child是第几行的view
     */
    private var childOfLines: HashMap<View, Int> = HashMap()
    /**
     * 用于指定对齐方式
     */
    private var gravity: Int = GRAVITY_LEFT

    companion object {
        val GRAVITY_LEFT = 0//左对齐
        val GRAVITY_CENTER = 1//居中
        val GRAVITY_RIGHT = 2//右对齐
    }

    init {

    }

    override fun generateLayoutParams(attrs: AttributeSet?): LayoutParams {
        return MarginLayoutParams(context, attrs)
    }

    override fun generateLayoutParams(p: LayoutParams?): LayoutParams {
        return MarginLayoutParams(p)
    }

    override fun generateDefaultLayoutParams(): LayoutParams {
        return MarginLayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
                ViewGroup.LayoutParams.MATCH_PARENT)
    }

    /**
     * 设置对齐方式
     * 默认为GRAVITY_LEFT左对齐
     */
    fun setGravity(gravity: Int) {
        this.gravity = gravity
        //这里要注意,必须先调用 requestLayout() 方法再调用 invalidate ()方法。
        //具体原因是,在调用 requestLayout() 方法时,view 只会执行 onMeasure(先)及 onLayout(后)方法,
        //而调用 invalidate ()方法时,view 会调用 onDraw()方法。
        //调用完这两个方法你的自定义控件就可以重绘及更新了。
        //ps:若只改变宽高调用 requestLayout() 方法即可,若只更新内容调用  invalidate ()方法。
        requestLayout()
        invalidate()
    }

    override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
        childTopOffsets.clear()
        childOfLines.clear()

        //获取主布局宽高
        val pWidth = MeasureSpec.getSize(widthMeasureSpec)
        val pHeight = MeasureSpec.getSize(heightMeasureSpec)
        //获取主布局宽高模式
        val pWMode = MeasureSpec.getMode(widthMeasureSpec)
        val pHMode = MeasureSpec.getMode(heightMeasureSpec)

        var wCur = 0//当前记录的最大宽度
        var hCur = 0//当前记录的最大高度
        var temW = 0//临时行宽度记录
        var temH = 0//临时行高度记录
        var line = 0//记录当前第几行了
        //流布局宽高都为warp_content的情况下
        var childW: Int//子控件宽度
        var childH: Int//子控件高度
        for (i in 0 until childCount) {
            var child = getChildAt(i)
            measureChild(child, widthMeasureSpec, heightMeasureSpec)
            var param = child.layoutParams as MarginLayoutParams
            childW = child.measuredWidth + param.leftMargin + param.rightMargin
            childH = child.measuredHeight + param.topMargin + param.bottomMargin
            if (temW + childW > pWidth) {
                //出现需要换行的情况的时候
                wCur = Math.max(temW, wCur)
                hCur += temH
                childTopOffsets.put(child, hCur)//记录需要顶部偏移量
                line++
                //初始化下一行数据
                temW = childW
                temH = childH
            } else {
                temW += childW
                temH = Math.max(childH, temH)
            }
            if (gravity != GRAVITY_LEFT)
                childOffsets.put(line, (pWidth - temW) / 2)//记录需要左侧偏移量
            childOfLines.put(child, line)//记录子控件所在行数
        }
        hCur += temH //最后一行的高度记得加上

        //非match_parent 情况下校准左侧偏移量
        if (pWMode != MeasureSpec.EXACTLY && gravity != GRAVITY_LEFT) {
            for (i in 0 until childOffsets.size) {
                childOffsets[i] = childOffsets[i]!!.minus((pWidth - wCur) / 2)
            }
        }
        //=======================================
        //确定最终的宽高
        setMeasuredDimension(if (pWMode == MeasureSpec.EXACTLY) {
            pWidth
        } else {
            wCur
        }, if (pHMode == MeasureSpec.EXACTLY) {
            pHeight
        } else {
            hCur
        })
    }

    override fun onLayout(changed: Boolean, l: Int, t: Int, r: Int, b: Int) {
        var top = 0
        var currentLine = 0//当前行数
        var left = getOffset(currentLine)
        for (i in 0 until childCount) {
            val child = getChildAt(i)
            val param = child.layoutParams as MarginLayoutParams
            if (currentLine != childOfLines[child]) {
                currentLine = childOfLines[child]!!
                top += childTopOffsets[child]!!
                left = getOffset(currentLine)
            }
            child.layout(left + param.leftMargin, top + param.topMargin, left + child.measuredWidth + param.leftMargin, top + child.measuredHeight + param.topMargin)
            left += child.measuredWidth + param.leftMargin + param.rightMargin
        }
    }

    /**
     * 根据行数获取当前左侧偏移量
     */
    private fun getOffset(currentLine: Int): Int {
        return when (gravity) {
            GRAVITY_LEFT -> 0
            GRAVITY_CENTER -> childOffsets[currentLine]!!
            GRAVITY_RIGHT -> childOffsets[currentLine]!! * 2
            else -> 0
        }
    }
}

java版本:


import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;

import com.orhanobut.logger.Logger;

import androidx.collection.ArrayMap;


/**
 * 流式布局
 *
 * @author 陈聪 2020-08-04 17:39
 */
public class MyFlowLayout extends ViewGroup {

    /** 用于记录child距离顶部距离 */
    private ArrayMap<View, Integer> childTopOffsets = new ArrayMap<>();
    /**
     * 用于记录child距离左侧距离--用于配置所有标签位置显示
     * 配合gravity使用
     */
    private ArrayMap<Integer, Integer> childOffsets = new ArrayMap<>();
    /** 用于记录当前child是第几行的view */
    private ArrayMap<View, Integer> childOfLines = new ArrayMap<>();
    /** 用于指定对齐方式 */
    private int gravity = GRAVITY_LEFT;

    /** 左对齐 */
    public static final int GRAVITY_LEFT = 0;
    /** 居中 */
    public static final int GRAVITY_CENTER = 1;
    /** 右对齐 */
    public static final int GRAVITY_RIGHT = 2;

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

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

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


    @Override
    public LayoutParams generateLayoutParams(AttributeSet attrs) {
        return new MarginLayoutParams(getContext(), attrs);
    }

    @Override
    public LayoutParams generateLayoutParams(LayoutParams p) {
        return new MarginLayoutParams(p);
    }

    @Override
    public LayoutParams generateDefaultLayoutParams() {
        return new MarginLayoutParams(LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
    }

    /**
     * 设置对齐方式
     * 默认为GRAVITY_LEFT左对齐
     */
    public void setGravity(int gravity) {
        this.gravity = gravity;
        //这里要注意,必须先调用 requestLayout() 方法再调用 invalidate ()方法。
        //具体原因是,在调用 requestLayout() 方法时,view 只会执行 onMeasure(先)及 onLayout(后)方法,
        //而调用 invalidate ()方法时,view 会调用 onDraw()方法。
        //调用完这两个方法你的自定义控件就可以重绘及更新了。
        //ps:若只改变宽高调用 requestLayout() 方法即可,若只更新内容调用  invalidate ()方法。
        requestLayout();
        invalidate();
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        childTopOffsets.clear();
        childOfLines.clear();

        //获取主布局宽高
        int pWidth = MeasureSpec.getSize(widthMeasureSpec);
        int pHeight = MeasureSpec.getSize(heightMeasureSpec);
        //获取主布局宽高模式
        int wMode = MeasureSpec.getMode(widthMeasureSpec);
        int hMode = MeasureSpec.getMode(heightMeasureSpec);

        //当前记录的最大宽度
        int wCur = 0;
        //当前记录的最大高度
        int hCur = 0;
        //临时行宽度记录
        int temW = 0;
        //临时行高度记录
        int temH = 0;
        //记录当前第几行了
        int line = 0;
        //流布局宽高都为warp_content的情况下
        int childW;//子控件宽度
        int childH;//子控件高度
        for (int i = 0; i < getChildCount(); i++) {
            View child = getChildAt(i);
            measureChild(child, widthMeasureSpec, heightMeasureSpec);
            MarginLayoutParams param = (MarginLayoutParams) child.getLayoutParams();
            childW = child.getMeasuredWidth() + param.leftMargin + param.rightMargin;
            childH = child.getMeasuredHeight() + param.topMargin + param.bottomMargin;
            if (temW + childW > pWidth) {
                //出现需要换行的情况的时候
                wCur = Math.max(temW, wCur);
                hCur += temH;
                //记录需要顶部偏移量
                childTopOffsets.put(child, hCur);
                line++;
                //初始化下一行数据
                temW = childW;
                temH = childH;
            } else {
                temW += childW;
                temH = Math.max(childH, temH);
            }
            if (gravity != GRAVITY_LEFT) {
                //记录需要左侧偏移量
                childOffsets.put(line, (pWidth - temW) / 2);
            }
            //记录子控件所在行数
            childOfLines.put(child, line);
        }
        //最后一行的高度记得加上
        hCur += temH;

        //非match_parent 情况下校准左侧偏移量
        if (wMode != MeasureSpec.EXACTLY && gravity != GRAVITY_LEFT) {
            for (int i = 0; i < childOffsets.size(); i++) {
                childOffsets.put(i, Math.min(childOffsets.get(i), (pWidth - wCur) / 2));
            }
        }
        //=======================================
        //确定最终的宽高
        setMeasuredDimension(wMode == MeasureSpec.EXACTLY ? pWidth : wCur,
                hMode == MeasureSpec.EXACTLY ? pHeight : hCur);
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        int top = 0;
        //当前行数
        int currentLine = 0;
        int left = getOffset(currentLine);
        for (int i = 0; i < getChildCount(); i++) {
            View child = getChildAt(i);
            MarginLayoutParams param = (MarginLayoutParams) child.getLayoutParams();
            if (currentLine != childOfLines.get(child)) {
                currentLine = childOfLines.get(child);
                top = childTopOffsets.get(child);
                left = getOffset(currentLine);
            }
            Logger.e("onLayout"+" currentLine-"+currentLine+" top-"+top+" left-"+left);
            child.layout(left + param.leftMargin, top + param.topMargin, left + child.getMeasuredWidth() + param.leftMargin, top + child.getMeasuredHeight() + param.topMargin);
            left += child.getMeasuredWidth() + param.leftMargin + param.rightMargin;
        }
    }

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

推荐阅读更多精彩内容