如何使TextView中的某些文字加粗显示

2025-03-31 18:11:24
推荐回答(1个)
回答1:

普通:
textview.setText("hello, 你好吗");

加粗:
textview.setText(Html.fromHtml("hello, 你好吗"));