Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android text style missing light, medium, thin,

When setting custom fonts for a textview, I can only choose normal, bold or italic: enter image description here

How can I set the style to be light instead of bold in the following example?

<TextViewWithCustomFont
...
android:textStyle="bold"/>
like image 627
AlikElzin-kilaka Avatar asked Aug 14 '13 13:08

AlikElzin-kilaka


People also ask

What is text font weight in android?

Font weight value in the range of 1, 1000.


1 Answers

This is font specific. Not all fonts have a light, medium, thin attribute/style, but the default font should. You can use the default light font by using fontFamily: sans-serif-light or for thin, fontFamily: sans-serif-thin.

For custom fonts, you would need to include the light version of the font and use it.

like image 108
Alex Fu Avatar answered Oct 15 '22 05:10

Alex Fu