当前位置 博文首页 > null_null999的博客:字体加粗

    null_null999的博客:字体加粗

    作者:[db:作者] 时间:2021-09-15 10:19

    Android中字体加粗
    一、在xml文件中使用android:textStyle=”bold”

    二、但是不能将中文设置成粗体,将中文设置成粗体的方法是:

    TextView tv = (TextView)findViewById(R.id.TextView01);
    TextPaint tp = tv.getPaint();
    tp.setFakeBoldText(true);
    cs
    下一篇:没有了