此处不再允许元素字体系列:Android Studio

时间:2018-07-10 15:32:08

标签: android xml android-studio

每当我尝试在XML中包含字体时,都会出现标题中提到的错误。 这是XML代码。

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".home_screen">

    <font-family>
        <font>

        </font>
    </font-family>

    <EditText
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ems="10"
        android:gravity="center"
        android:inputType="textPersonName"
        android:singleLine="true"
        android:text="HOME ACTIVATOR"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.503"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.03" />
</android.support.constraint.ConstraintLayout>

当我将鼠标悬停在“ font-family”标签上时,我看到了android studio指出的问题。可能是文档错误? 我正在按照Google官方开发人员页面上的在线指南进行操作-https://developer.android.com/guide/topics/resources/font-resource

1 个答案:

答案 0 :(得分:0)

这个问题现在已经解决,看来我在使用API​​级别22时只能在API级别26中使用。