- Создайте папку
/res/color
(в вашем каталоге res
).
- Добавьте новый файл цветовых ресурсов с именем, например, color_states_materialbutton.xml :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false"
android:color="@color/colorDisabled" />
<item android:color="@color/colorEnabled" />
</selector>
- Создайте стиль в styles.xml с одним из
Widget.MaterialComponents.Button
стилей в качестве его родителя и вашим списком состояний цвета в качестве тега backgrountTint
:
<style name="MaterialButtonStyle" parent="Widget.MaterialComponents.Button.UnelevatedButton">
<item name="backgroundTint">@color/color_states_materialbutton</item>
</style>
- Установите свой стиль на
MaterialButton
в макете:
<com.google.android.material.button.MaterialButton
style="@style/MaterialButtonStyle"
android:id="@+id/disabled_material_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:enabled="false"
android:text="@string/button_label_disabled"/>