Я использую этот стиль, чтобы изменить цвет фона моей Button:
<style name="AccentButton" parent="Widget.AppCompat.Button.Colored">
    <item name="colorButtonNormal">@color/colorAccent</item>
    <item name="android:textColor">@color/white</item>
</style>
И в макете:
    <Button
        android:id="@+id/login_button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/fragment_login_login_button"
        app:theme="@style/AccentButton"/>
 Оно работает. Но когда я вызываю setEnabled(false) для этой Button, она сохраняет тот же цвет. Как я могу справиться с этим делом?
