Android 流式布局实现

概述

本文主要分享Android流式布局实现,实现效果如下:

在实现之前先来看一下View的生命周期,如下图:


流式布局属于自定义ViewGroup,重点关注onMeasure与onLayout方法

onMeasure完成子控件以及自身宽高测量

onMeasure方法中的主要工作:

  • 确定子控件的widthMeasureSpec与heightMeasureSpec(重点)
  • 根据childWidthMeasureSpec与childHeightMeasureSpec测量子控件
  • 根据流式布局的算法计算出最大行宽和行高
  • 获取自身的测量模式以及测量宽高,再根据子View的测量结果来确定最终的宽高

确定子控件的widthMeasureSpec与heightMeasureSpec

子控件对应宽高的MeasureSpec如何确定呢?追踪ViewGroup中的getChildMeasureSpec方法:

public static int getChildMeasureSpec(int spec, int padding, int childDimension) {
        int specMode = MeasureSpec.getMode(spec);
        int specSize = MeasureSpec.getSize(spec);

        int size = Math.max(0, specSize - padding);

        int resultSize = 0;
        int resultMode = 0;

        switch (specMode) {
        // Parent has imposed an exact size on us
        case MeasureSpec.EXACTLY:
            if (childDimension >= 0) {
                resultSize = childDimension;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
                // Child wants to be our size. So be it.
                resultSize = size;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
                // Child wants to determine its own size. It can't be
                // bigger than us.
                resultSize = size;
                resultMode = MeasureSpec.AT_MOST;
            }
            break;

        // Parent has imposed a maximum size on us
        case MeasureSpec.AT_MOST:
            if (childDimension >= 0) {
                // Child wants a specific size... so be it
                resultSize = childDimension;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
                // Child wants to be our size, but our size is not fixed.
                // Constrain child to not be bigger than us.
                resultSize = size;
                resultMode = MeasureSpec.AT_MOST;
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
                // Child wants to determine its own size. It can't be
                // bigger than us.
                resultSize = size;
                resultMode = MeasureSpec.AT_MOST;
            }
            break;

        // Parent asked to see how big we want to be
        case MeasureSpec.UNSPECIFIED:
            if (childDimension >= 0) {
                // Child wants a specific size... let him have it
                resultSize = childDimension;
                resultMode = MeasureSpec.EXACTLY;
            } else if (childDimension == LayoutParams.MATCH_PARENT) {
                // Child wants to be our size... find out how big it should
                // be
                resultSize = View.sUseZeroUnspecifiedMeasureSpec ? 0 : size;
                resultMode = MeasureSpec.UNSPECIFIED;
            } else if (childDimension == LayoutParams.WRAP_CONTENT) {
                // Child wants to determine its own size.... find out how
                // big it should be
                resultSize = View.sUseZeroUnspecifiedMeasureSpec ? 0 : size;
                resultMode = MeasureSpec.UNSPECIFIED;
            }
            break;
        }
        //noinspection ResourceType
        return MeasureSpec.makeMeasureSpec(resultSize, resultMode);
    }

由源码可知,子控件MeasureSpec是由于父控件的MeasureSpec、父控件的Padding以及自身LayoutParams对应的宽高共同确定的。

MeasureSpec是View中的内部类,基本都是二进制运算。由于int是32位的,用高两位表示mode,低30位表示size,MODE_SHIFT = 30的作用是移位,而mode包含三种模式:

  • UNSPECIFIED:不对View大小做限制,系统使用
  • EXACTLY:确切的大小,如:100dp
  • AT_MOST:大小不可超过某数值,如:matchParent, 最大不能超过父控件

由上述的源码可知,普通View的创建规则如下:



明白了ViewMeasureSpec的创建规则后,那确认子控件MeasureSpec就非常简单了,核心代码如下:

    val childView = getChildAt(i)
    //对应xml布局参数
    val layoutParams = childView.layoutParams
    //父控件的MeasureSpec、父控件已使用的Padding、layoutParams共同确定子控件的MeasureSpec
    //MeasureSpec包含mode(高两位)和size(低30位)
    val childWidthMeasureSpec = getChildMeasureSpec(
        widthMeasureSpec,
        paddingLeft + paddingRight,
        layoutParams.width
    )
    val childHeightMeasureSpec = getChildMeasureSpec(
        heightMeasureSpec,
        paddingTop + paddingBottom,
        layoutParams.height
    )

根据widthMeasureSpec与heightMeasureSpec测量子控件

childView.measure(childWidthMeasureSpec, childHeightMeasureSpec)

根据流式布局的算法计算出最大行宽和行高

    //测量完成后可获取测量的宽高
    val measuredWidth = childView.measuredWidth
    val measuredHeight = childView.measuredHeight

    //判断是否需要换行
    if (lineWidthUsed + measuredWidth + mHorizontalSpacing > selfWidth) {
        //记录行数
        mAllLines.add(lineViews)
        //记录行高
        mLineHeight.add(lineHeight)

        //在每次换行时计算自身所需的宽高
        parentNeedWidth = parentNeedWidth.coerceAtLeast(lineWidthUsed + mHorizontalSpacing)
        parentNeedHeight += lineHeight + mVerticalSpacing

        //重置参数
        lineViews = mutableListOf()
        lineWidthUsed = 0
        lineHeight = 0
    }

    //记录每一行存放控件
    lineViews.add(childView)
    //记录每一行已使用的高度
    lineWidthUsed += measuredWidth + mHorizontalSpacing
    //记录每一行的最大高度
    lineHeight = lineHeight.coerceAtLeast(measuredHeight)

获取自身的测量模式以及测量宽高,再根据子View的测量结果来确定最终的宽高

   //获取自身的测量模式
    val widthMode = MeasureSpec.getMode(widthMeasureSpec)
    val heightMode = MeasureSpec.getMode(heightMeasureSpec)
    //获取父控件给我的宽度
    val selfWidth = MeasureSpec.getSize(widthMeasureSpec)
    //获取父控件给我的宽度
    val selfHeight = MeasureSpec.getSize(heightMeasureSpec)
    //确定最终的宽高
    setMeasuredDimension(
        if (widthMode == MeasureSpec.EXACTLY) selfWidth else parentNeedWidth,
        if (heightMode == MeasureSpec.EXACTLY) selfHeight else parentNeedHeight
    )

onLayout完成子控件的摆放

核心代码如下:

 override fun onLayout(changed: Boolean, l: Int, t: Int, r: Int, b: Int) {

    var curL = paddingLeft
    var curT = paddingTop

    //逐个将每一行的控件进行摆放
    for (i in 0 until mAllLines.size) {

        val lineViews = mAllLines[i]
        val lineHeight = mLineHeight[i]

        lineViews.forEach { view ->
            val left = curL
            val top = curT
            val right = left + view.measuredWidth
            val bottom = top + view.measuredHeight
            //注意要点:在onMeasure之后能够获取measuredWidth或measuredHeight,但获取width/height无效,必须在view.layout之后才生效
            view.layout(left, top, right, bottom)
            //计算下一个控件的left
            curL = right + mHorizontalSpacing
        }
        //计算下一行控件的Left
        curL = paddingLeft
        //计算下一行控件的Top
        curT += lineHeight + mVerticalSpacing
    }

需要注意在onMeasure之后能够获取控件的measuredWidth或measuredHeight,但获取width/height无效,必须在view.layout之后获取才生效,所以在控件摆放之前如果需要获取控件的宽高需要使用getMeasureWidth/getMeasureHeight

完整代码实现

class FlowLayout @JvmOverloads constructor(
    context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0
) : ViewGroup(context, attrs, defStyleAttr) {

    //记录总共多少行
    private val mAllLines = mutableListOf<List<View>>()

    //记录每一行的最大高度,用于Layout阶段使用
    private val mLineHeight = mutableListOf<Int>()

    //水平间距
    private val mHorizontalSpacing = dp2px(16)

    //垂直间距
    private val mVerticalSpacing = dp2px(8)


    //自定义ViewGroup一般重新onMeasure onLayout
    override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec)

        //注意要点:由于测量过程是从父控件到子控件递归调用的,所以onMeasure可能被调用多次,这里参考FrameLayout源码进行清除工作
        mAllLines.clear()
        mLineHeight.clear()

        /**
         * 思路:1.先确定子控件的childWidthMeasureSpec与childHeightMeasureSpec(重点)
         *     2.在根据childWidthMeasureSpec与childHeightMeasureSpec测量子控件
         *     3.根据流式布局的算法计算出最大行宽和行高
         *     4.获取自身的测量模式,再根据子View的测量结果来确定自身的最终宽高
         */

        //获取父控件给我的宽度
        val selfWidth = MeasureSpec.getSize(widthMeasureSpec)
        //获取父控件给我的宽度
        val selfHeight = MeasureSpec.getSize(heightMeasureSpec)

        //每一行已使用的高度
        var lineWidthUsed = 0
        //每一行的最大高度
        var lineHeight = 0

        //自身所需的宽度
        var parentNeedWidth = 0
        //自身所需的高度
        var parentNeedHeight = 0

        //记录每行控件的个数
        var lineViews = mutableListOf<View>()

        for (i in 0 until childCount) {

            val childView = getChildAt(i)
            //对应xml布局参数
            val layoutParams = childView.layoutParams
            //父控件的MeasureSpec、父控件已使用的Padding、layoutParams共同确定子控件的MeasureSpec
            //MeasureSpec包含mode(高两位)和size(低30位)
            val childWidthMeasureSpec = getChildMeasureSpec(
                widthMeasureSpec,
                paddingLeft + paddingRight,
                layoutParams.width
            )
            val childHeightMeasureSpec = getChildMeasureSpec(
                heightMeasureSpec,
                paddingTop + paddingBottom,
                layoutParams.height
            )
            //测量子控件
            childView.measure(childWidthMeasureSpec, childHeightMeasureSpec)
            //测量完成后可获取测量的宽高
            val measuredWidth = childView.measuredWidth
            val measuredHeight = childView.measuredHeight

            //判断是否需要换行
            if (lineWidthUsed + measuredWidth + mHorizontalSpacing > selfWidth) {
                //记录行数
                mAllLines.add(lineViews)
                //记录行高
                mLineHeight.add(lineHeight)

                //在每次换行时计算自身所需的宽高
                parentNeedWidth = parentNeedWidth.coerceAtLeast(lineWidthUsed + mHorizontalSpacing)
                parentNeedHeight += lineHeight + mVerticalSpacing

                //重置参数
                lineViews = mutableListOf()
                lineWidthUsed = 0
                lineHeight = 0
            }

            //记录每一行存放控件
            lineViews.add(childView)
            //记录每一行已使用的高度
            lineWidthUsed += measuredWidth + mHorizontalSpacing
            //记录每一行的最大高度
            lineHeight = lineHeight.coerceAtLeast(measuredHeight)

        }

        //先获取自身的测量模式以及大小,再根据子View的测量结果来确定自身的宽高
        val widthMode = MeasureSpec.getMode(widthMeasureSpec)
        val heightMode = MeasureSpec.getMode(heightMeasureSpec)

        //确定最终的宽高
        setMeasuredDimension(
            if (widthMode == MeasureSpec.EXACTLY) selfWidth else parentNeedWidth,
            if (heightMode == MeasureSpec.EXACTLY) selfHeight else parentNeedHeight
        )
    }

    override fun onLayout(changed: Boolean, l: Int, t: Int, r: Int, b: Int) {

        var curL = paddingLeft
        var curT = paddingTop

        //逐个将每一行的控件进行摆放
        for (i in 0 until mAllLines.size) {

            val lineViews = mAllLines[i]
            val lineHeight = mLineHeight[i]

            lineViews.forEach { view ->
                val left = curL
                val top = curT
                val right = left + view.measuredWidth
                val bottom = top + view.measuredHeight
                //注意要点:在onMeasure之后能够获取measuredWidth或measuredHeight,但获取width/height无效,必须在view.layout之后才生效
                view.layout(left, top, right, bottom)
                //计算下一个控件的left
                curL = right + mHorizontalSpacing
            }
            //计算下一行控件的Left
            curL = paddingLeft
            //计算下一行控件的Top
            curT += lineHeight + mVerticalSpacing
        }
    }

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

推荐阅读更多精彩内容