Android Button background color not changing

Try use AppCompactButton
instead of

<Button

use

<androidx.appcompat.widget.AppCompatButton

that will do the trick

Update: 01/06/2021

Found out that the above will not work on earlier Android versions.
For materiel design Button use

app:backgroundTint="@color/green"

Leave a Comment