Kotlin中自定义RadioGroup实现多个RadioButton自动换行

效果图

1.自定义View

Kotlin 复制代码
import android.content.Context
import android.util.AttributeSet
import android.view.View
import android.widget.RadioGroup

class FlowRadioGroup @JvmOverloads constructor(
    context: Context, attrs: AttributeSet? = null
) : RadioGroup(context, attrs) {

    override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
        val widthSize = MeasureSpec.getSize(widthMeasureSpec)
        val widthMode = MeasureSpec.getMode(widthMeasureSpec)
        val heightSize = MeasureSpec.getSize(heightMeasureSpec)
        val heightMode = MeasureSpec.getMode(heightMeasureSpec)

        measureChildren(widthMeasureSpec, heightMeasureSpec)

        var maxWidth = 0
        var totalHeight = 0
        var lineWidth = 0
        var maxLineHeight = 0
        var oldHeight: Int
        var oldWidth: Int
        val count = childCount

        for (i in 0 until count) {
            val child = getChildAt(i)
            val params = child.layoutParams as MarginLayoutParams
            oldHeight = maxLineHeight
            oldWidth = maxWidth

            val deltaX = child.measuredWidth + params.leftMargin + params.rightMargin
            if (lineWidth + deltaX + paddingLeft + paddingRight > widthSize) {
                // 触发换行
                maxWidth = Math.max(lineWidth, oldWidth)
                lineWidth = deltaX
                totalHeight += oldHeight
                maxLineHeight = child.measuredHeight + params.topMargin + params.bottomMargin
            } else {
                // 不换行,累加宽度
                lineWidth += deltaX
                val deltaY = child.measuredHeight + params.topMargin + params.bottomMargin
                maxLineHeight = Math.max(maxLineHeight, deltaY)
            }
            if (i == count - 1) {
                totalHeight += maxLineHeight
                maxWidth = Math.max(lineWidth, oldWidth)
            }
        }

        maxWidth += paddingLeft + paddingRight
        totalHeight += paddingTop + paddingBottom

        setMeasuredDimension(
            if (widthMode == MeasureSpec.EXACTLY) widthSize else maxWidth,
            if (heightMode == MeasureSpec.EXACTLY) heightSize else totalHeight
        )
    }

    override fun onLayout(changed: Boolean, l: Int, t: Int, r: Int, b: Int) {
        val count = childCount
        var preLeft = paddingLeft
        var preTop = paddingTop
        var maxHeight = 0

        for (i in 0 until count) {
            val child = getChildAt(i)
            val params = child.layoutParams as MarginLayoutParams

            if (preLeft + params.leftMargin + child.measuredWidth + params.rightMargin + paddingRight > (r - l)) {
                // 换行重置
                preLeft = paddingLeft
                preTop += maxHeight
                maxHeight = child.measuredHeight + params.topMargin + params.bottomMargin
            } else {
                maxHeight = Math.max(maxHeight, child.measuredHeight + params.topMargin + params.bottomMargin)
            }

            val left = preLeft + params.leftMargin
            val top = preTop + params.topMargin
            val right = left + child.measuredWidth
            val bottom = top + child.measuredHeight

            child.layout(left, top, right, bottom)
            preLeft += params.leftMargin + child.measuredWidth + params.rightMargin
        }
    }
}

2.xml中使用

XML 复制代码
            <FlowRadioGroup
                android:id="@+id/rg_dishevaluation_dialog_pucka"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>

3.res下drawable文件中

yuanjiao_bg_gray.xml未选择状态

XML 复制代码
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:width="339dp" android:height="137dp">
        <shape android:shape="rectangle">
            <solid android:color="#BBBBBB" />
            <corners android:topLeftRadius="11dp" android:topRightRadius="11dp" android:bottomLeftRadius="11dp" android:bottomRightRadius="11dp" />
        </shape>
    </item>
</selector>

yuanjiao_bg_blue.xml选中状态

XML 复制代码
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:width="339dp" android:height="137dp">
        <shape android:shape="rectangle">
            <solid android:color="#ff4a8dff" />
            <corners android:topLeftRadius="11dp" android:topRightRadius="11dp" android:bottomLeftRadius="11dp" android:bottomRightRadius="11dp" />
        </shape>
    </item>
</selector>

check_radio_button.xml选中状态切换

XML 复制代码
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/yuanjiao_bg_blue" android:state_checked="true"/>
    <item android:drawable="@drawable/yuanjiao_bg_blue" android:state_pressed="true"/>
    <item android:drawable="@drawable/yuanjiao_bg_gray" android:state_checked="false"/>
    <item android:drawable="@drawable/yuanjiao_bg_gray" android:state_pressed="false"/>
</selector>

4.代码中使用

Kotlin 复制代码
list.forEach { it ->
            val radioButton = RadioButton(context).apply {
                id = View.generateViewId()
                layoutParams = RadioGroup.LayoutParams(
                    RadioGroup.LayoutParams.WRAP_CONTENT,
                    TypedValue.applyDimension(
                        TypedValue.COMPLEX_UNIT_DIP,
                        35f,
                        resources.displayMetrics
                    ).toInt()
                )
                setButtonDrawable(android.R.color.transparent)
                gravity = Gravity.CENTER
                setBackgroundResource(R.drawable.check_radio_button)
                setTextColor(ContextCompat.getColor(context, R.color.white))
                text = it.label//RadioButton中显示的文字
                val margin = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 5f, resources.displayMetrics).toInt()
                (layoutParams as ViewGroup.MarginLayoutParams).setMargins(margin, 5, margin, 5)
                val paddingH = TypedValue.applyDimension(
                    TypedValue.COMPLEX_UNIT_DIP,
                    10f,
                    resources.displayMetrics
                ).toInt()
                setPadding(paddingH, 0, paddingH, 0)//设置padding
            }
            radioButton.setOnCheckedChangeListener { _, b ->
                it.check = b//list中存储对应RadioButton当前选择状态
            }
            binding.rgDishevaluationDialogTaste.addView(radioButton)
        }
相关推荐
阿pin9 小时前
Android随笔-AIDL
android·开发语言·aidl
2501_9160074710 小时前
Bundle ID 注册与管理 App ID 创建指南 命名规则 权限开关与删除注意事项
android·ios·小程序·https·uni-app·iphone·webview
LiLiYuan.10 小时前
【字符串常量池】
java·开发语言·面试
雨白10 小时前
面向对象六大基本原则实战:从零重构支持引擎切换的网络框架
android·架构
瑞码空间10 小时前
Python爬虫进阶实战笔记
开发语言·python·计算机·python爬虫
16月6日-晴11 小时前
Java面向对象进阶—static
java·开发语言
爱跳舞的烤冷面11 小时前
自学嵌入式第16天(数据结构篇--链表进阶操作)
开发语言
持敬chijing11 小时前
PHP开发-环境搭建-安装phpstudy-vscode工具
开发语言·vscode·php
charlie11451419111 小时前
Cinux · 第一次跳进 Ring 3:用户态与特权隔离
开发语言·c++·操作系统·开源项目
躺不平的理查德12 小时前
Windows C++ 第三方库使用流程备忘录--OpenCV
开发语言·c++