How do you change text to bold in Android?

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

    Simply you can do the following:

    Set the attribute in XML

      android:textStyle="bold"
    

    Programatically the method is:

    TextView Tv = (TextView) findViewById(R.id.TextView);
    
    Typeface boldTypeface = Typeface.defaultFromStyle(Typeface.BOLD);
    
    Tv.setTypeface(boldTypeface);
    

    Hope this helps you thank you.

提交回复
热议问题