我正在尝试创建一个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的自定义布局所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)