I need to show SmallCaps text in TextView. I am trying to use code below:
<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" />
But it just shows me normal text, without SmallCaps effect. I also try to set it programmatically (text1.fontFeatureSettings = "smcp"
) but also without success.
How to make SmallCaps text in Android? Why fontFeatureSettings doesn't work?