Created
July 31, 2020 12:41
-
-
Save ricknout/22086d157c2ff94f2699c3cf906d3f09 to your computer and use it in GitHub Desktop.
MDC-Android custom type attribute
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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