`

Android中字体加粗

阅读更多
Android中字体加粗

Android中字体加粗
一、在xml文件中使用android:textStyle=”bold”
二、但是不能将中文设置成粗体,将中文设置成粗体的方法是:
TextView tv = (TextView)findViewById(R.id.TextView01);
TextPaint tp = tv.getPaint();
tp.setFakeBoldText(true);



PS:
  android:duplicateParentState="true"

  继承父组件状态
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics