Created
July 31, 2020 13:29
-
-
Save ricknout/54d5bea958569c246ca099603f2f3afc to your computer and use it in GitHub Desktop.
MDC-Android type in custom views
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 --> | |
<declare-styleable name="AppCustomView"> | |
<attr name="titleTextAppearance" /> | |
<attr name="subtitleTextAppearance" /> | |
... | |
</declare-styleable> | |
<!-- In res/values/styles.xml --> | |
<style name="Widget.App.CustomView" parent="android:Widget"> | |
<item name="titleTextAppearance">?attr/textAppearanceHeadline6</item> | |
<item name="subtitleTextAppearance">?attr/textAppearanceBody2</item> | |
... | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment