我想知道如何在android中改变单选按钮的圆圈和边框颜色。请帮我试试两天。
答案 0 :(得分:2)
更简单,只需设置buttonTint颜色:(仅适用于api级别21或以上)
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radio"
android:checked="true"
android:buttonTint="@color/your_color"/>
在你的values / colors.xml中,你的颜色在这种情况下是红色的:
<color name="your_color">#e75748</color>
答案 1 :(得分:0)
您需要将drawable
设置为RadioButton
以更改颜色和边框或其他任何部分。
您可以在此处找到更多信息:RadioButton - how to use a custom drawable?
您可以使用tint
功能,但这在旧设备中无效。如果您不支持&lt;选择此项API 21。