Change TextView Font?

前端 未结 3 1672
悲哀的现实
悲哀的现实 2020-12-21 17:11

How can I change font type in Android TextView?



        
3条回答
  •  -上瘾入骨i
    2020-12-21 17:26

    You can use the android:typeface attribute. For example:

    
    

    The XML attribute only allows the values normal, sans, serif, and monospace. If you want to use a different Typeface (perhaps a custom one that you ship with your app), you will have to do it in code by calling setTypeface() for the view after the TextView is loaded.

提交回复
热议问题