如何在Android中自定义单选按钮

时间:2020-08-04 08:37:17

标签: java android xml android-studio radio-button

我正在android应用程序中创建单选按钮,但我想对其进行自定义。但是我不知道该怎么做。我希望将图像作为图标显示,并将图标下方的文本显示为该图像。此外,我还希望在选择任何单选按钮时更改颜色。

enter image description here

我想要这种单选按钮。请告诉我我该怎么做?

1 个答案:

答案 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" />

参考:您可以在这里https://stackoverflow.com/a/19163987/12676247

获得更好的描述