Android Button background color not changing

Try using 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 material design Button use

<Button app:backgroundTint="@color/green">

Leave a Comment