How do you change text to bold in Android?

后端 未结 19 696
走了就别回头了
走了就别回头了 2020-12-02 04:21

How do you change text/font settings in an Android TextView?

For example, how do you make the text bold

19条回答
  •  遥遥无期
    2020-12-02 05:01

    Define a new style with the format you want in the style.xml file in the values folder

    
    

    Then apply this style to the TextView by writing the following code with the properties of the TextView

    style="@style/TextViewStyle"
    

提交回复
热议问题