How do you change text to bold in Android?

后端 未结 19 620
走了就别回头了
走了就别回头了 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:25

    From the XML you can set the textStyle to bold as below

    <TextView
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Bold text"
       android:textStyle="bold"/>
    

    You can set the TextView to bold programmatically as below

    textview.setTypeface(Typeface.DEFAULT_BOLD);
    
    0 讨论(0)
提交回复
热议问题