I've been searching but still am unable to find a way.
How does one change all text button colors (without modifying the android:textColor
of other widgets in a scheme?
NB: Does not work
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorButtonNormal">#1bbc9b</item>
<!--<item name="android:textColor">#ffffff</item>-->
<item name="android:buttonStyle">@style/AppTheme.MyButton</item>
</style>
<style name="AppTheme.MyButton" parent="@android:style/TextAppearance">
<item name="android:textColor">#ffffff</item>
</style>
UPDATE: Fix for just altering button color, not entire button style