How do you change text to bold in Android?

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

    Assuming you are a new starter on Android Studio, Simply you can get it done in design view XML by using

    android:textStyle="bold"          //to make text bold
    android:textStyle="italic"        //to make text italic
    android:textStyle="bold|italic"   //to make text bold & italic
    

提交回复
热议问题