使用支持库 26.1 的 XML 中的字体:呈现问题

Font in XML using Support Library 26.1: Rendering Issues

我决定使用 Fonts in XML 功能在我的应用程序中使用 one 自定义字体。我确保完成以下操作:

一切正常,当我在虚拟设备中 运行 我的应用程序时,我可以看到我的 Buttons 上使用的自定义字体。

但是,在 XML 中应用自定义字体后,弹出两个警告:

如何消除这些警告?如果我不能,忽略它们是否安全?


应用的 Gradle 文件(部分):

apply plugin: 'com.android.application'

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

    compile "com.android.support:support-compat:26.1.0"
}

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="com.ks.shakee.MainMenuActivity">

    <LinearLayout
        android:id="@+id/ll_mainmenu"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="64dp"
        android:layout_marginEnd="16dp"
        android:layout_marginStart="16dp"
        android:divider="@drawable/divider_vertical_invisible_medium"
        android:orientation="vertical"
        android:showDividers="middle"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent">

        <Button
            android:id="@+id/btn_timedgame"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fontFamily="@font/myfont"
            android:text="Timed Challenge"
            android:textSize="32dp" />

        <Button
            android:id="@+id/btn_bestscore"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fontFamily="@font/myfont"
            android:text="Best Score"
            android:textSize="32dp"
            tools:layout_editor_absoluteX="66dp"
            tools:layout_editor_absoluteY="231dp" />
    </LinearLayout>

</android.support.constraint.ConstraintLayout>

今天刚刚将我的 Android Studio 更新到 3.1,并将我的 Gradle 文件更改为使用 27.1。警告消失了。