我定位到SDK版本27 我在布局中使用它:
<TextView
android:id="@+id/logo_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:fontFamily="@font/source_sans_pro_regular"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/logo"
android:text="@string/passenger_name"
android:textColor="@color/gray32"
android:textSize="38dp" />
我在不同的textview上使用了不同的字体。 我的资源字体中有字体
这在Android 8上完美运行。但在具有6.0.1的Nexus 6上却如此。它不会改变我的字体。 有办法解决这个问题吗?
我制作了一个字体资源,称为:sans_pro
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<font
android:font="@font/source_sans_pro_regular"
android:fontStyle="normal"
android:fontWeight="400"
app:font="@font/source_sans_pro_regular"
app:fontStyle="normal"
app:fontWeight="400" />
</font-family>
我将其设置在textView上。
<TextView
android:id="@+id/logo_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:fontFamily="@font/sans_pro"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/logo"
android:text="@string/passenger_name"
android:textColor="@color/gray32"
android:textSize="38dp" />
但是它仍然不起作用。
如果我以编程方式进行操作,则可以。为什么它不能在xml中工作,我缺少什么吗?
((TextView) base.findViewById(R.id.logo_text)).setTypeface(ResourcesCompat.getFont(getActivity(), R.font.sans_pro_extralight));
我正在使用此支持库:
implementation 'com.android.support:design:27.1.1'
答案 0 :(得分:0)
您应该使用支持库为运行Android 4.1(API级别16)及更高版本的设备上的XML字体功能提供支持。
https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml
答案 1 :(得分:0)
您应该使用AndroidX库并将TextView
替换为androidx.appcompat.widget.AppCompatTextView
。