Is there a style/item within themes.xml for setting a button’s disabled appearance? I’ve set the button’s appearance via the android:colorButtonNormal style/item, but that results in the same style/item being applied to both enabled and disabled buttons. I’d have thought there’d be a style/item like android:colorButtonDisabled, but there isn’t (at least not by that name).
I’m coding in Java 8 and Android 13 (API 33).
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Base.Theme.ShooterHelper" parent="Theme.AppCompat.DayNight">
<!-- Customize your light theme here. -->
<item name="android:statusBarColor">@color/material_dynamic_neutral30</item>
<item name="colorPrimary">@color/material_dynamic_neutral50</item>
<item name="android:colorBackground">@color/material_dynamic_neutral90</item>
<item name="android:colorButtonNormal">@color/material_dynamic_neutral_variant80</item>