我正在使用以下链接中给出的谷歌可下载字体
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts.html
我想使用蒙特塞拉特字体样式半粗体,但该选项在 android 中不存在
同样在下面的链接中有样式半粗体任何想法如何做到这一点
https://fonts.google.com/specimen/Montserrat
以下是添加字体系列后的我的 textview xml
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:fontFamily="@font/montserrat"
android:text="@string/address"
android:textAllCaps="false"
android:textColor="@color/title_light_color"
android:textSize="10sp"
android:textStyle="bold" />