• Android自定义控件(三) 自定义FlowLayout


    前言

    • 本篇文章记录Android下自定义FlowLayout(流式布局), 类似于微信的标签,
    • 学习巩固自定义控件知识

    说明

    1、实现效果

    效果类似于微信的标签功能,依次显示标签名,当标签的总宽度(标签宽度 + 边距)超过总的屏幕宽度时,进行换行显示。本篇文章的实现前提是字体大小一致,标签高度一致。

    FlowLayout


    2、实现步骤

    上述效果实现主要以下几步:

    1.重写ViewGrouponMeasure方法
    2.测量单个标签的宽度,包含标签的边距即leftMarginrightMargin
    3. 测量单个标签的高度,包含标签的边距即topMarinbottomMargin
    4. 测量父控件的宽度和高度
    5. 重写ViewGrouponLayout方法
    6. 对标签进行布局、根据规则摆放在父控件中

    FlowLayout实现示意图
    根据上图可以分析实现功能需要的参数:

    lineTotalW: 一行的子标签的总宽度,用于和屏幕宽度比较大小,决定是标签是否换行显示
    totalHeight: 所有行子标签的总高度,用于测量父控件的高度

    
     lineTotalW = paddingLeft + (child.measuredWidth + 左边距 +  右边距)+ ......... + paddingRight
     totalHeight = paddingTop + (child.measuredHeight + 上边距 +  下边距)+ ........+ paddingBottom
    
    
    • 1
    • 2
    • 3
    • 4

    实现

    通过上面的分析,对FlowLayout的实现有了个基本的了解,下面来通过代码实现。

    1、重写onMeasure方法,对标签进行测量、对父控件进行测量

    
       private var totalWSize = 0
    
        /**
         * [MeasureSpec] 封装父对象传递给子view的布局要求
         * [MeasureSpec] 有尺寸和模式组成
         */
        override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
            super.onMeasure(widthMeasureSpec, heightMeasureSpec)
    
            //父布局的测量模式
            val wMode = MeasureSpec.getMode(widthMeasureSpec)
            val hMode = MeasureSpec.getMode(heightMeasureSpec)
            
    		//屏幕宽度去除内边距剩余的宽度
            totalWSize = MeasureSpec.getSize(widthMeasureSpec) - paddingRight - paddingLeft
    
            var totalHeight = paddingTop
            var lineTotalW = paddingLeft
            
            //记录有几行
            var lineCount = 1
            //去除内边距父容器的最大宽高
            val sizeW = MeasureSpec.getSize(widthMeasureSpec) - paddingRight - paddingLeft
            val sizeH = MeasureSpec.getSize(heightMeasureSpec) - paddingTop - paddingBottom
            
            val count = childCount
            for (i in 0 until count) {
                val child = getChildAt(i)
                val lp = child.layoutParams as MarginLayoutParams
                if (child.visibility == View.GONE) {
                    break
                }
                //【1】、创建子view宽的MeasureSpec
                val childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(sizeW, if (wMode == MeasureSpec.EXACTLY) MeasureSpec.AT_MOST else wMode)
                //【2】、创建子view高的MeasureSpec
                val childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(sizeH, if (hMode == MeasureSpec.EXACTLY) MeasureSpec.AT_MOST else hMode)
                //【3】、讲测量说明书传递给子view,让子view测量自己
                child.measure(childWidthMeasureSpec, childHeightMeasureSpec)
                //【4】、计算出一行宽度
                lineTotalW += child.measuredWidth + lp.leftMargin + lp.rightMargin
                //【5】、第一行的高度处理
                if(lineCount == 1 && lineTotalW < totalWSize){
                    totalHeight = child.measuredHeight + lp.topMargin + lp.bottomMargin
                }
                //【6】、子view的总宽度和大于屏幕宽度
                if(lineTotalW > totalWSize){
                    //【7】、将一行长度初始化
                    lineTotalW = paddingLeft + lp.leftMargin + lp.rightMargin +  child.measuredWidth
                    lineCount += 1
                    //【8】、计算几行子view高度
                    totalHeight = lineCount * (child.measuredHeight + lp.topMargin + lp.bottomMargin)
                }
            }
            //【9】、计算父控件总高度
            totalHeight += paddingTop +  paddingBottom
            //【10】、测量父控件
            setMeasuredDimension(sizeW, measureParentHeight(totalHeight, heightMeasureSpec))
        }
        
        /**
         * 计算父控件的总高
         */
       private fun measureParentHeight(calculateSize:Int,heightMeasureSpec: Int):Int{
            val hSize = MeasureSpec.getSize(heightMeasureSpec)
            val hMode = MeasureSpec.getMode(heightMeasureSpec)
            var result = 0
            //测量模式为精确,match_parent或者定值
            if(hMode == MeasureSpec.EXACTLY){
                result = hSize
            }else if(hMode == MeasureSpec.AT_MOST){
              //测量模式至多,这里是计算n行子view的行高
                result = calculateSize
            }
            return result
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76

    2、重写onLayout方法,对标签进行布局

    
        /**
         * 布局子view
         */
        override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
            var lineTotalW = paddingLeft
            var l: Int
            var r: Int
            var t: Int
            var b: Int
            //记录有几行
            var lineCount = 1
            val childCount = childCount
            for (i in 0 until childCount) {
                val child = getChildAt(i)
                val lp = child.layoutParams as MarginLayoutParams
                //【1】、计算行子view总的宽度
                lineTotalW += child.measuredWidth + lp.leftMargin + lp.rightMargin
                if(lineTotalW > totalWSize){
                    //将一行长度初始化
                    lineTotalW = child.measuredWidth + lp.leftMargin + lp.rightMargin  +  paddingLeft
                    lineCount += 1
                }
    
                l = if(i == 0){
                    paddingLeft + lp.leftMargin
                }else{
                    lineTotalW - child.measuredWidth - lp.rightMargin
                }
                r = l + child.measuredWidth + lp.rightMargin
                t = (lineCount - 1) * (lp.topMargin + lp.bottomMargin + child.measuredHeight) + lp.topMargin + paddingTop
                b = t + child.measuredHeight + lp.bottomMargin
                child.layout(l, t, r, b)
            }
        }
        
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36

    在开发过程中,为了能够获取标签的左右边距值,即leftMarginrightMargin,需要去获取layoutParams对象,这里用到的是MarginLayoutParams。直接将childlayoutParams转换为MarginLayoutParams会报ClassCastException

    
     val lp = child.layoutParams as MarginLayoutParams
     
    
    • 1
    • 2
    • 3

    类型转换异常

    
        public static class MarginLayoutParams extends ViewGroup.LayoutParams {
    	
    	}
    
        /**
         * Returns a new set of layout parameters based on the supplied attributes set.
         *
         * @param attrs the attributes to build the layout parameters from
         *
         * @return an instance of {@link android.view.ViewGroup.LayoutParams} or one
         *         of its descendants
         */
        public LayoutParams generateLayoutParams(AttributeSet attrs) {
            return new LayoutParams(getContext(), attrs);
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    MarginLayoutParams继承LayoutParamsViewGroup LayoutParams转化为MarginLayoutParams

    3、重写generateLayoutParams方法,将ViewGroupLayoutParams转换为MarginLayoutParams

       
        override fun generateLayoutParams(attrs: AttributeSet): LayoutParams {
            return MarginLayoutParams(context, attrs)
        }
        
    
    • 1
    • 2
    • 3
    • 4
    • 5

    4、XML布局文件中使用

     <com.xn.customview.widget.LabelView
      	android:id="@+id/labelView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/px_15"
        android:background="@color/white"
        android:paddingBottom="@dimen/px_45"
        android:paddingStart="@dimen/px_15"
        android:paddingEnd="@dimen/px_15">
    
        <TextView
    	    android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/shape_flow_item"
            android:paddingStart="@dimen/px_30"
            android:paddingEnd="@dimen/px_30"
            android:layout_marginTop="@dimen/px_15"
            android:layout_marginStart="@dimen/px_15"
            android:text="iPhone 13"
            android:gravity="center"
            android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:text="小米"
              android:layout_marginStart="@dimen/px_15"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:text="HUAWEI Mate X2"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:text="OPPO Reno8"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:text="金立S10金钻版手机"
              android:gravity="center"
              android:textColor="@color/white" />
    
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:text="Meizu"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="三星手机"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="格力手机"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="诺基亚手机"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="Google手机"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="乐视手机"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="Nubia努比亚"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="MOTO 摩托罗拉"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="BlackBerry 黑莓手机"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="Smartisan 锤子科技"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="OnePlus"
              android:gravity="center"
              android:textColor="@color/white" />
    
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:background="@drawable/shape_flow_item"
              android:paddingStart="@dimen/px_30"
              android:paddingEnd="@dimen/px_30"
              android:layout_marginTop="@dimen/px_15"
              android:layout_marginStart="@dimen/px_15"
              android:layout_marginEnd="@dimen/px_15"
              android:text="Philips 飞利浦手机"
              android:gravity="center"
              android:textColor="@color/white" />
    
        com.xn.customview.widget.LabelView>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228

    总结

    本篇文章记录了自定义一个简易的FlowLayout过程,自定义ViewGroup重写onMeasureonLayout方法。根据规则进行测量和对子View布局。

  • 相关阅读:
    化工供应链如何向产业互联网转型,S2B2C供应链电商系统提升企业供应链效率
    【Vue3】ref对象类型的响应式数据
    卷积输入输出维度计算公式,Conv, Dilation Conv, Padding, Kernel_size, Output的维度计算关系
    vite跨域proxy设置与开发、生产环境的接口配置,接口在生产环境下,还能使用proxy代理地址吗
    asp.net core之中间件
    水果店在微信小程序中可以实现什么功能
    hyper-v安装 windows10虚拟机后,登录一直是锁屏界面,无法开启增强会话
    使用Keras和深度确定性策略(DDPG)来玩TORCS
    集群中用Memcached来实现session共享
    道路千万条,为什么这家创新存储公司会选这条?
  • 原文地址:https://blog.csdn.net/qq_17470165/article/details/126611135