Skip to content

Instantly share code, notes, and snippets.

@valterh4ck3r
Created November 11, 2017 19:02
Show Gist options
  • Save valterh4ck3r/1847bbcb3e574c94a485763b6f30a358 to your computer and use it in GitHub Desktop.
Save valterh4ck3r/1847bbcb3e574c94a485763b6f30a358 to your computer and use it in GitHub Desktop.
Buttons Android
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="RaisedButton" parent="Widget.AppCompat.Button.Colored">
<item name="backgroundTint">@color/colorPrimaryDark</item>
</style>
<style name="FlatButton" parent="Widget.AppCompat.Button.Borderless">
<item name="android:textColor">@color/colorAccent</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment