textview字体加粗属性
时间: 2023-08-29 18:07:58 浏览: 100
TextView属性
3星 · 编辑精心推荐
要在TextView中设置字体加粗属性,可以使用android:textStyle属性。将这个属性设置为"bold",可以使文本粗体显示。例如:
```
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textStyle="bold" />
```
这将会使文本"Hello World!"在TextView中以粗体显示。你也可以使用代码来设置文本的样式:
```
TextView textView = findViewById(R.id.textView);
textView.setText("Hello World!");
textView.setTypeface(null, Typeface.BOLD);
```
这将会使TextView中的文本以粗体显示。
阅读全文