美文网首页
2019-06-03 Xml和纯代码设置TextView文字加粗

2019-06-03 Xml和纯代码设置TextView文字加粗

作者: 兣甅 | 来源:发表于2019-06-03 16:51 被阅读0次

    1.xml加粗

    android:textStyle="bold"
    

    2.代码加粗

    (1)推荐方式

    textView.typeface = Typeface.defaultFromStyle(Typeface.BOLD)
    

    (1)非推荐方式

    textView.paint.isFakeBoldText = true
    

    相关文章

      网友评论

          本文标题:2019-06-03 Xml和纯代码设置TextView文字加粗

          本文链接:https://www.haomeiwen.com/subject/lkthxctx.html