Reputation: 2210
How can I change the tint of the buttons within the android studio?
I see some properties when I select the button namely textColor, textColorHighlight, textColorHint and textColorLink
I'm expecting some built-in color themes without me creating custom styles, like standard green colored buttons, and blue secondary buttons.
Upvotes: 0
Views: 155
Reputation: 12953
If you want to change background tint color you can just use:
android:backgroundTint="@android:color/holo_green_light"
or
android:backgroundTint="@android:color/holo_green_dark"
and so on... you can see other colors using autocomplete.
Upvotes: 1