Skip to content

Instantly share code, notes, and snippets.

@ricknout
Created July 31, 2020 11:53
Show Gist options
  • Save ricknout/1ac80b715657592a1bc5b4ed06f83330 to your computer and use it in GitHub Desktop.
Save ricknout/1ac80b715657592a1bc5b4ed06f83330 to your computer and use it in GitHub Desktop.
MDC-Android type resources
<!-- Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0 -->
<!-- In res/values/type.xml -->
<style name="TextAppearance.App.Headline6" parent="TextAppearance.MaterialComponents.Headline6">
<item name="fontFamily">@font/roboto_mono</item>
...
</style>
<style name="TextAppearance.App.Body2" parent="TextAppearance.MaterialComponents.Body2">
<item name="fontFamily">@font/roboto_mono</item>
<item name="android:textSize">14sp</item>
...
</style>
<style name="TextAppearance.App.Button" parent="TextAppearance.MaterialComponents.Button">
<item name="fontFamily">@font/roboto_mono</item>
<item name="android:textAllCaps">false</item>
...
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment