我需要在 TextView 中显示 SmallCaps 文本。我正在尝试使用下面的代码:
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFeatureSettings="smcp"
android:textColor="@color/black"
android:textSize="16sp"
android:text="TEXT" />
但它只是向我显示普通文本,没有 SmallCaps 效果。我也尝试以编程方式设置它(text1.fontFeatureSettings = "smcp"
)但也没有成功。
如何在 Android 中制作 SmallCaps 文本?为什么 fontFeatureSettings 不起作用?