TextView文字加粗

xml加粗

1
android:textStyle="bold"

代码加粗

推荐方式

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

非推荐方式

1
textView.paint.isFakeBoldText = true
坚持原创技术分享,您的支持将鼓励我继续创作!