Android 中Textview字体加粗

来源:互联网 发布:淘宝店铺头像在线制作 编辑:程序博客网 时间:2024/04/28 14:55
1.直接在Textview中设置属性
     android:textStyle="bold"
2.在代码中通过设置画笔来加粗字体,这样可以加粗中文
   
TextPaint tp = small_reporter_detail_descriprion_tv.getPaint();tp.setFakeBoldText(true);
0 0
原创粉丝点击