2015-11-15 112 views

回答

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"/> 
在你的價值觀

/colors.xml把你的膚色在這種情況下,一個紅色之一:

<color name="your_color">#e75748</color> 
0

您需要將drawable設置爲RadioButton才能更改顏色和邊框或其他任何部分。

你可以在這裏找到更多的信息:RadioButton - how to use a custom drawable?

可以使用tint功能,但是這將無法工作在舊設備。如果您不支持< API 21,請選擇此項。

相關問題