在radiobutton android上改变RadioButton覆盖文本的背景

在radiobutton android上改变RadioButton覆盖文本的背景,第1张

概述我在改变RadioButton的背景属性时遇到了一些问题首先,我想在每个RadioButton下面创建Line,这是一个RadiobuttonGroup中的三个这是下面的代码<RadioGroupandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:divider="@android:c

我在改变Radiobutton的背景属性时遇到了一些问题

首先,我想在每个Radio button下面创建line,这是一个Radiobutton Group中的三个

这是下面的代码

 <RadioGroup    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    androID:divIDer="@androID:color/black"    androID:orIEntation="vertical" >    <Radiobutton        androID:ID="@+ID/radioBtnFirst"        androID:layout_wIDth="fill_parent"        androID:layout_height="0dp"        androID:layout_weight="1"        androID:background="@drawable/custom_radiogroup_divIDer"        androID:text="Answer 1"/>    <Radiobutton        androID:ID="@+ID/radioBtnTwo"        androID:layout_wIDth="fill_parent"        androID:layout_height="0dp"        androID:layout_weight="1"        androID:background="@drawable/custom_radiogroup_divIDer"        androID:text="Answer 2"/>    <Radiobutton        androID:ID="@+ID/radioBtnThree"        androID:layout_wIDth="fill_parent"        androID:layout_height="0dp"        androID:layout_weight="1"        androID:background="@drawable/custom_radiogroup_divIDer"        androID:text="Answer 3"/></RadioGroup>

现在在drawable文件夹中,custom_radiogroup_divIDer.xml是

<?xml version="1.0" enCoding="utf-8"?><shape xmlns:androID="http://schemas.androID.com/apk/res/androID"       androID:shape="rectangle" >    <solID androID:color="@androID:color/transparent" />    <stroke       androID:wIDth="0.3dp"       androID:color="@androID:color/black" /></shape>

但现在问题是我使用背景属性

单选按钮看起来像文本与radiobutton重叠

解决方法:

您必须从Java代码设置radiobutton的背景:

radioBtnFirst.setbuttonDrawable(R.drawable.custom_radiogroup_divIDer);

它也适用于复选框;)

总结

以上是内存溢出为你收集整理的在radiobutton android上改变RadioButton覆盖文本的背景全部内容,希望文章能够帮你解决在radiobutton android上改变RadioButton覆盖文本的背景所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存