小编典典

TextView通过XML文件加粗?

all

有没有办法通过 XML 将 TextView 中的文本加粗?

<TextView
   android:textSize="12dip"
   android:textAppearance="bold"  -> ??
</TextView>

谢谢


阅读 81

收藏
2022-07-07

共1个答案

小编典典

我有一个项目,其中有以下内容TextView

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textStyle="bold"
    android:text="@string/app_name"
    android:layout_gravity="center" 
/>

所以,我猜你需要使用
android:textStyle

2022-07-07