我在布局中使用RadioButton
。我在哪里提供了RadioButton
的背景资料。以下是代码
<RadioGroup
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="horizontal">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@null"
android:background="@drawable/rb_spain"
android:id="@+id/am_rb_spain" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@null"
android:background="@drawable/rb_germany"
android:layout_marginLeft="@dimen/margin_15"
android:layout_marginRight="@dimen/margin_15"
android:id="@+id/am_rb_german" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@null"
android:background="@drawable/rb_english"
android:id="@+id/am_rb_english" />
</RadioGroup>
RadioButton
背景可绘制
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_checked="false" android:drawable="@drawable/ic_spain" />
<item android:state_checked="true" android:drawable="@drawable/ic_spain_pressed" /> //pressed image is Large in size
<item android:drawable="@drawable/ic_spain" /> <!-- default -->
</selector>
我已将选择保存在TinyDB
中,以便每当我打开应用时,应用都会记住我的选择。但每当我打开我的应用程序时,默认选择的RadioButton背景显示为大。
我用相同的填充物拍摄了相同尺寸的所有图像。
此处默认选择第一个标志。但它的尺寸似乎略大
现在我已经按下了第二面旗帜。但是第一面旗帜没有进入正常状态。
答案 0 :(得分:2)
您应该将android:button="@null"
更改为android:button="@drawable/rb_germany"
并从每个RadioButton中删除背景。它会运行良好。
您更新的RadioButton应该是:
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/rb_spain"
android:id="@+id/am_rb_spain" />