我正在android应用程序中创建单选按钮,但我想对其进行自定义。但是我不知道该怎么做。我希望将图像作为图标显示,并将图标下方的文本显示为该图像。此外,我还希望在选择任何单选按钮时更改颜色。
我想要这种单选按钮。请告诉我我该怎么做?
答案 0 :(得分:0)
您可以使用自定义背景
<RadioButton
android:id="@+id/radioButtom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:button="@drawable/custom_background"
android:checked="true"
android:text="Your Text" />
这里是Custom_background.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/your_regular_state_drawable"
android:state_checked="true"
android:state_pressed="true" />
<item
android:drawable="@drawable/your_selected_state_drawable"
android:state_pressed="true" />
<item
android:drawable="@drawable/your_selected_state_drawable"
android:state_checked="true" />
<item
android:drawable="@drawable/your_regular_state_drawable" />
获得更好的描述