Material Theming with MDC: Type

Type theming on Android using the MDC library

Nick Rout
Android Developers
Published in
8 min readAug 25, 2020

--

This article is also posted on the Material Design blog.

Material Theming is a way to customize Material Components to align with your brand. A Material theme includes color, typography and shape parameters which you can adjust to get near-infinite variations of the components — all while maintaining their core anatomy and usability.

On Android, Material Theming can be implemented using the Material Components (MDC) library, from version 1.1.0 onwards. If you’re looking to migrate from the Design Support Library or MDC 1.0.0, take a look at our migration guide.

This article will be focusing on type theming.

Type attributes

Material Design provides 13 type “styles” that are applied to all the text in your app. Each of these have a design term (eg. “Body 1”) along with a corresponding type attribute that can be overridden in your app theme (eg. textAppearanceBody1). There are default “baseline” values (text size, letter spacing, capitalization, etc.) for each style.

MDC type attributes with baseline styling

Material Components use these type attributes to style textual elements of the widgets (those parts that subclass or comprise one or more TextViews).

Type attributes used by a button

They are applied with eg.

android:textAppearance=”?attr/textAppearanceBody1”

in layouts and widget styles. Take a look at

’s “What’s your text’s appearance?” article for more information on using this and the order of precedence with other styling techniques.

In the MDC themes these attributes map to styles, eg.

<style name=”Theme.MaterialComponents.*” parent="...">
...
<item name=”textAppearanceBody1”>
@style/TextAppearance.MaterialComponents.Body1
</item>
<style />

You might recognize TextAppearance styles from AppCompat or the platform and these are discussed in more detail in the Type resources section below. The corresponding attributes are new to MDC and give you the ability to vary typography by theme.

Picking type

Figuring out which type styles to use and the values within them may be the responsibility of a designer, or derived from your product’s brand. However, it’s still useful to know about the role of each style and in which scenarios they should be used:

  • textAppearanceHeadline* styles are for headings
  • textAppearanceSubtitle* styles are for subheadings
  • textAppearanceBody* styles are for multiline body text
  • textAppearanceButton is for buttons but also maps to parts of other components like tabs and dialog actions
  • textAppearanceCaption is for smaller text like text field hints and errors
  • textAppearanceOverline is also for smaller text but capitalization and increased letter spacing make it suitable for small titles and labels like date picker headers

Type tool

Material Design provides a useful tool for previewing type scales, integrating with Google Fonts and exporting code. See “Type scale generator” in the Material Design type scale guidelines.

Google Fonts (left) and Type scale generator (right)

Type resources

Type resources consist of fonts as well as TextAppearance styles. Let’s take a look at what’s available on Android and a few things to keep in mind when declaring styles.

XML and downloadable fonts

Fonts are stored in the res/font directory and referenced with @font/ notation. You can use either local XML fonts or downloadable fonts. Android Studio offers a built-in wizard to get you started with downloadable fonts including the necessary certificates and manifest metadata. You may also want to check out “The Android Developer’s Guide to Better Typography” by

for a more detailed guide and further optimizations to font preloading.

In general we recommend using downloadable fonts as they reduce the size of your app bundle by leveraging the shared font provider cache. However, downloadable fonts currently only work with those available on Google Fonts. If your app requires a purchased or proprietary font, use XML fonts.

It’s also worth mentioning that variable fonts are supported on Android from API 26 onwards. Take a look at

’ “Variable Fonts in Android O 🖍” article for more information.

TextAppearance styles

TextAppearance styles can be seen as the Android equivalent of Material Design type styles. For custom styles, we recommend two approaches to help separate concerns and create a single source of truth for type theming values in your app:

  • Store all TextAppearance styles in a single res/values/type.xml file
  • Use the MDC TextAppearance styles as parents and adhere to the same naming convention

Attributes and values you can use within these styles align with those supported by TextView:

  • fontFamily is the font family, typically an @font/ resource referring to an XML or downloadable font
  • android:textSize is the size of the text, typically an sp dimension
  • android:textColor is the color of text
  • android:letterSpacing is the spacing between characters
  • android:textAllCaps is a boolean to toggle text capitalization
  • android:textFontWeight is the weight of the font, used to select the closest match from a font family, but is only available on API 28 and above. android:textStyle can also be used to apply transformations such as bold and italic.

Calculating letterSpacing

Letter spacing values on Android tend to use a different unit of measurement (em) to those used in design tools like Sketch (tracking). The Material Design typography guidelines provide a relatively simple equation for determining suitable em values from tracking values:

(Tracking from Sketch / font size in sp) = letter spacing

MaterialTextView and lineHeight

The platform TextView added support for the android:lineHeight attribute in API 28. MDC provides backported support for this via the MaterialTextView class. You don’t need to use this class directly in layouts as <TextView>s will get auto-inflated as MaterialTextViews by MaterialComponentsViewInflater.

You can use lineHeight in various scenarios:

  • Included as an item in TextAppearance styles (applied with android:textAppearance="...")
  • Included as an item in widget styles with parent Widget.MaterialComponents.TextView (applied with style="...")
  • Applied directly to <TextView>s in layouts
Different lineHeight values

Things to consider

  • You don’t have to override all type styles. However, bear in mind that default MDC styles use the system font (typically Roboto). Be sure to check which type styles your widgets and TextViews are using.
  • While TextAppearance does support android:textColor, MDC tends to separate concerns by specifying this separately in the main widget styles, eg.
<style name=”Widget.MaterialComponents.*” parent=”...”>
...
<!-- Color -->
<item name=”android:textColor”>?attr/colorOnSurface</item>
<!-- Type -->
<item name=”android:textAppearance”>
?attr/textAppearanceBody1
</item>
</style>

Additional type styles

Your design system may call for additional type styles outside of the 13 that Material Theming specifies. Thankfully this is relatively easy to do on Android by declaring a type attr:

Overriding type styles in an app theme

Let’s take a look at how you can add your chosen type styles to your app theme by overriding relevant attributes.

First, we recommend setting up your theme(s) to gracefully handle light and dark color palettes while reducing repetition with base themes. For more on this topic, take a look at

’ article on dark theme as well as the “Developing Themes with Style” talk given by him and .

Once set up, override the type attributes you wish to change in your base theme:

Material Components will respond to theme-level type overrides:

Material Design components responding to theme-level type overrides

Type in MDC widgets

Earlier we said that MDC widgets respond to overrides of theme level type attributes. But how would you know, for example, that a button uses textAppearanceButton as the style for its text label? Let’s take a look at a few options.

Build a Material Theme

Build a Material Theme is an interactive Android project that lets you create your own Material theme by customizing values for color, typography, and shape. It also includes a catalog of all theming parameters and components. Determining which widgets respond to changes in theme type attributes can be done by:

Changes in type values in Build a Material Theme

MDC developer docs

The MDC developer docs have recently been refreshed. As part of this we’ve included attribute tables which include design terminology and default values used in the library. For example, check out the “Anatomy and key properties” sections of the updated buttons doc.

MDC button dev doc attribute table with default type values

Source code

Inspecting the MDC source code is arguably the most reliable approach. MDC uses default styles to achieve Material Theming so it’s a good idea to look at these as well as any styleable attrs and the java file(s). For example, check out the styles, attrs and java file for MaterialButton.

MDC button default style with type values

Type in custom views

Your app may include custom widgets you’ve built or gotten from an existing library. Making these views responsive to Material Theming is useful when using them alongside standard MDC widgets. Let’s take a look at what to keep in mind when supporting type theming for custom widgets.

Use MDC attrs in <declare-styleable>s and default styles

Allowing your custom views to be styled involves using a <declare-styleable>. Reusing attr names from MDC can be useful for consistency. Default styles that use <declare-styleable>s can also reference MDC theme type attrs for their values:

OK Google, what’s next?

We’ve been through the process of implementing color theming in your Android app using MDC. Be sure to check out our other posts in this series on why we recommend using MDC, color theming, shape theming, dark theme, and Material’s motion system.

As always, we encourage you to file bug reports and feature requests on GitHub. Also be sure to check out our Android companion example apps.

If you’ve successfully implemented type theming or if you’re having trouble doing so, leave a comment below or reach out to us on Twitter @MaterialDesign and @AndroidDev.

--

--

Nick Rout
Android Developers

Principal Android Engineer at GoDaddy | Ex-Google | Google Developer Expert for Android