android studio textview加粗
时间: 2024-09-09 11:10:41 浏览: 59
android textview 显示html方法解析
在Android Studio中,如果你想要在布局文件(XML)中对`TextView`的文本进行加粗,可以通过设置`TextView`的`android:fontFamily`属性或者直接使用`android:style`属性来应用一个加粗样式。以下是一个简单的例子:
```xml
<TextView
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="加粗文本"
android:textStyle="bold"
android:fontFamily="sans-serif-condensed" />
```
在这里,`android:textStyle="bold"`属性将文本样式设置为加粗。另外,`android:fontFamily="sans-serif-condensed"`属性使用了一个自带的加粗字体族。如果你想使用自定义的字体来加粗,你可以将字体文件放在项目的`assets/fonts`目录下,并通过`Typeface`类来加载这个字体。
在Java或Kotlin代码中设置`TextView`的加粗样式,可以使用以下代码:
```java
TextView textView = findViewById(R.id.myTextView);
textView.setTypeface(null, Typeface.BOLD);
```
或者如果你有一个自定义的`Typeface`对象:
```java
Typeface customTypeface = Typeface.createFromAsset(getAssets(), "fonts/MyCustomFont.ttf");
textView.setTypeface(customTypeface, Typeface.BOLD);
```
请确保你的字体文件(如`MyCustomFont.ttf`)已经在`assets/fonts`目录下正确放置。
阅读全文