I'm using this trick to change the background color of all the application buttons:
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="colorButtonNormal">@color/unpressed2</item>
</style>
It's working perfectly in post-Lollipop (api 21) devices but in pre-Lollipop it's being ignored.
How can I change the background color of the buttons also in pre-Lollipop devices?
If you want your Button
to work with colorButtonNormal
your activity needs to extend AppCompatActivity