当前位置: 代码迷 >> Android >> Android中汉语言字体加粗
  详细解决方案

Android中汉语言字体加粗

热度:37   发布时间:2016-05-01 16:59:09.0
Android中中文字体加粗
一、在xml文件中使用android:textStyle=”bold”
?
二、但是不能将中文设置成粗体,将中文设置成粗体的方法是:

TextView tv = (TextView)findViewById(R.id.TextView01);
TextPaint tp = tv.getPaint();
tp.setFakeBoldText(true);

  相关解决方案