TextView textStyle 运行时改变字体粗细
2019-08-15 本文已影响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);