Android:Radio Group的自定义布局

Android:Radio Group的自定义布局,第1张

概述我正在尝试创建一个2×2的单选按钮阵列,但我不知道如何自定义除水平或垂直之外的布局.有任何想法吗?我只是得到了ABCD和ABCD但我想拥有ABCD编辑:我解决了这个问题.对于任何想知道的人,我设置了两个单独的无线电组(即一个用AB,一个用CD).我为每个RadioButton设

我正在尝试创建一个2×2的单选按钮阵列,但我不知道如何自定义除水平或垂直之外的布局.有任何想法吗?

我只是得到了

A B C D

ABCD

但我想拥有

A BC D

编辑:
我解决了这个问题.对于任何想知道的人,我设置了两个单独的无线电组(即一个用AB,一个用CD).我为每个Radiobutton设置onClickListener(),并在单击第一个RadioGroup中的按钮时在第二个RadioGroup上使用clearCheck(),反之亦然.

解决方法:

你可以通过将两个linearLayout包含在你的RadioGroup中,方向=“水平”来轻松完成.

<RadioGroup    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content">            <linearLayout                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:orIEntation="horizontal">                <Radiobutton                    androID:layout_wIDth="wrap_content"                    androID:layout_height="wrap_content"                    androID:textAllCaps="true"                    androID:text="18-24"                    />                <Radiobutton                    androID:layout_wIDth="wrap_content"                    androID:layout_height="wrap_content"                    androID:textAllCaps="true"                    androID:text="36-45"                    />            </linearLayout>            <linearLayout                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:orIEntation="horizontal">                <Radiobutton                    androID:layout_wIDth="wrap_content"                    androID:layout_height="wrap_content"                    androID:textAllCaps="true"                    androID:text="25-35"                    />                <Radiobutton                    androID:layout_wIDth="wrap_content"                    androID:layout_height="wrap_content"                    androID:textAllCaps="true"                    androID:text=">45"                    />            </linearLayout>
总结

以上是内存溢出为你收集整理的Android:Radio Group的自定义布局全部内容,希望文章能够帮你解决Android:Radio Group的自定义布局所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1107400.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存