如何在Android中更改CheckBox颜色

时间:2018-01-30 20:02:45

标签: android checkbox

我是Android开发的新手,我正在关注this教程,以便在Android中展示CheckboxCheckbox正确显示。

但我想更改复选框颜色。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您可以在不使用buttonTint更改drawable的情况下执行此操作(从API 23开始):

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:buttonTint="@color/CHECKMARK_COLOR_HERE" />

或使用AppCombatCheckBox用于旧版本的android / compatibility。

<android.support.v7.widget.AppCompatCheckBox 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    app:buttonTint="@color/CHECKMARK_COLOR_HERE" /> 

this链接

中有更多答案