样式材质复选框/复合波纹颜色

时间:2020-09-16 10:45:14

标签: android android-styles material-components-android android-checkbox android-compound-view

我正在尝试使用官方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>

我不能设置样式的是按下复选框时的波纹效果颜色:

enter image description here

我看到此颜色是具有透明度的默认绿色,我需要使用蓝色。试图在选择器中使用复选框状态但没有运气。

官方文档:https://material.io/develop/android/components/checkboxes

0 个答案:

没有答案