要實現Android選擇框變色,可以使用自定義樣式和主題來改變選擇框的顏色。以下是一種常見的方法:
<color name="custom_color">#FF4081</color>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:color="@color/custom_color" />
<item android:color="@android:color/black" />
</selector>
<style name="CustomCheckBoxStyle" parent="Widget.AppCompat.CompoundButton.CheckBox">
<item name="android:buttonTint">@drawable/selector_custom</item>
</style>
<CheckBox
android:id="@+id/custom_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Custom Checkbox"
style="@style/CustomCheckBoxStyle" />
這樣就可以實現Android選擇框變色了。當選擇框被選中時,會顯示定義的custom_color顏色,未被選中時顯示黑色。