1. 程式人生 > >Android字體加粗

Android字體加粗

來源 finger san -- tex android nbsp java fin

Android提供三種字體:“Sans”,“serif“和“monospace”。

在xml中屬性為:android:typeface

在xml中屬性為:android:textStyle = “bold”,可以將文字設置為粗體。
也可以在java代碼中:
TextView tv = (TextView)findViewById(R.id.tvShow);
TextView paint = tv.getPaint();
paint.setFakeBoldText(true);
---------------------

作者:fingerth
來源:CSDN
原文:https://blog.csdn.net/fingerth/article/details/50160919
版權聲明:本文為博主原創文章,轉載請附上博文鏈接!

Android字體加粗