美文网首页
TextView textStyle 运行时改变字体粗细

TextView textStyle 运行时改变字体粗细

作者: 今天天气很好我心情也很好 | 来源:发表于2019-08-15 23:35 被阅读0次

    Programmatically: Run time

    You can do programmatically using setTypeface():

    textView.setTypeface(null, Typeface.NORMAL);      // for Normal TexttextView.setTypeface(null, Typeface.BOLD);        // for Bold onlytextView.setTypeface(null, Typeface.ITALIC);      // for ItalictextView.setTypeface(null, Typeface.BOLD_ITALIC);

    相关文章

      网友评论

          本文标题:TextView textStyle 运行时改变字体粗细

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