📌  相关文章
📜  如何以编程方式在android中将文本样式设置为粗体 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:32.080000             🧑  作者: Mango

代码示例1
textView.setTypeface(null, Typeface.BOLD_ITALIC);
textView.setTypeface(null, Typeface.BOLD);
textView.setTypeface(null, Typeface.ITALIC);
textView.setTypeface(null, Typeface.NORMAL);