Skip to content

Instantly share code, notes, and snippets.

@ricknout
Created July 31, 2020 12:41
Show Gist options
  • Save ricknout/22086d157c2ff94f2699c3cf906d3f09 to your computer and use it in GitHub Desktop.
Save ricknout/22086d157c2ff94f2699c3cf906d3f09 to your computer and use it in GitHub Desktop.
MDC-Android custom type attribute
<!-- Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0 -->
<!-- In res/values/attrs.xml -->
<attr name="textAppearanceCustom" format="reference" />
<!-- In res/values/type.xml -->
<style name="TextAppearance.App.Custom" parent="TextAppearance.MaterialComponents.*">
...
</style>
<!-- In res/values/themes.xml -->
<style name="Theme.App" parent="Theme.MaterialComponents.*">
...
<item name="textAppearanceCustom">@style/TextAppearance.App.Custom</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment