Posts like this How to change fontFamily of TextView in Android suggests, that the variants of Roboto fonts you can specify in styles.xml in Android 4.2 boils down to the following:
- Regular
- Italic
- Bold
- Bold-italic
- Light
- Light-italic
- Thin
- Thin-italic
- Condensed regular
- Condensed italic
- Condensed bold
- Condensed bold-italic
That leaves out the ability to style TextViews using eg. the Roboto-Medium or Roboto-Black fonts.
But why would Google add system wide fonts that can not be used for styling of your TextViews? Surely there must be some way of specifying all of the Roboto fonts from within styles.xml (ie. NOT having to embed the fonts as Assets and creating custom TextViews in code) - but how?
Support Library 26 introduced using fonts in XML, and it's backwards compatible to Android API 14.
To add fonts as resources, perform the following steps in the Android Studio:
Right-click the res folder and go to New > Android resource directory. The New Resource Directory window appears.
In the Resource type list, select font, and then click OK. Note: The name of the resource directory must be font.
R.font.dancing_script
,R.font.lobster
, andR.font.typo_graphica
.To set a font for the
TextView
, in the layout XML file, set the fontFamily attribute to the font file you want to access.The Android Studio layout preview allows you to preview the font set in the TextView.
To add a font to a style, Open the styles.xml, and set the fontFamily attribute to the font file you want to access.
If you don't want to bundle the fonts in your app, you can always look into Downloadable Fonts