我正在尝试使用官方material.io教程设置CompoundButton.CheckBox
的样式:
<style name="Widget.App.CheckBox" parent="Widget.MaterialComponents.CompoundButton.CheckBox">
<item name="buttonTint">@color/button_tint</item>
</style>
和color/button_tint.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color=">@color/shrine_pink_900" android:state_checked="true"/>
<item android:alpha="0.38" android:color="@color/shrine_pink_100" android:state_enabled="false"/>
<item android:color="@color/shrine_pink_100"/>
</selector>
我不能设置样式的是按下复选框时的波纹效果颜色:
我看到此颜色是具有透明度的默认绿色,我需要使用蓝色。试图在选择器中使用复选框状态但没有运气。
官方文档:https://material.io/develop/android/components/checkboxes