Skip to content

Instantly share code, notes, and snippets.

@HugoMatilla
Created October 19, 2020 18:33
Show Gist options
  • Save HugoMatilla/14584d4c1be2602b123c7712a6be70d8 to your computer and use it in GitHub Desktop.
Save HugoMatilla/14584d4c1be2602b123c7712a6be70d8 to your computer and use it in GitHub Desktop.
<!-- res/styles.xml -->
<style name="Widget.MyApp.Button.MixedColors" parent="Widget.MaterialComponents.Button">
<item name="android:textColor">?attr/colorPrimaryVariant</item>
<item name="backgroundTint">?attr/colorSecondary</item>
</style>
<!-- Layout -->
<Button
style="@style/Widget.MyApp.Button.MixedColors"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Customized Button" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment