How to set font weight as light, regular in Android

后端 未结 2 910
遇见更好的自我
遇见更好的自我 2021-02-11 14:28

I have 3 text views. I need to set their weight as Light, Regular and Condensed. Can someone help me on how to achieve this in Android?

2条回答
  •  孤城傲影
    2021-02-11 15:07

    Use android:textStyle on a TextView to set the text style like bold, italic or normal.

    Here is an example of a TextView with a bold text style:

    
    

    If you want to use light or condensed, you will have to change your font. You can do it like this:

    android:fontFamily="sans-serif-light"
    

    For more information about fonts, please also look at the following answer Valid values for android:fontFamily and what they map to?

提交回复
热议问题