此处不允许元素 TextViewCompat
Element TextViewCompat is not allowed here
我正在尝试在我的应用程序上使用 TextViewCompat 以根据 Android 文档中的 article 支持较旧的 android 版本。
但是我在 Android Studio 上遇到了这个警告:
Element TextViewCompat is not allowed here
This inspection highlights unallowed XML tags in Android resource files and AndroidManifest.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:id="@+id/parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.841"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.87" />
<TextViewCompat
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:textSize="120sp"
android:text="10 min"
app:layout_constraintBottom_toTopOf="@+id/button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
使用android.support.v7.widget.TextViewCompat
或android.support.v7.widget.AppCompatTextView
根据 documentation:
,您无需执行此操作即可利用 AppCompatTextView
This will automatically be used when you use TextView in your layouts and the top-level activity / dialog is provided by appcompat. You should only need to manually use this class when writing custom views.
基本上,当您构建应用程序时,appcompat 会将 XML 中各种 UI 小部件的实例换成 Compat 版本。只要您不扩展小部件,就不必担心这种行为(如果您确实想要扩展小部件,您会收到一条 lint 警告,告诉您该怎么做)。
如果您尝试从 Java/Kotlin 以编程方式操作自动调整大小 API,则只需要 TextViewCompat
。这是通过将视图查找为 TextView
,然后在 TextViewCompat
:
上使用静态方法来完成的
TextView textView = findViewById(R.id.textView);
TextViewCompat.setAutoSizeTextTypeWithDefaults(textview, myTextSizeType);
我正在尝试在我的应用程序上使用 TextViewCompat 以根据 Android 文档中的 article 支持较旧的 android 版本。
但是我在 Android Studio 上遇到了这个警告:
Element TextViewCompat is not allowed here This inspection highlights unallowed XML tags in Android resource files and AndroidManifest.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:id="@+id/parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.841"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.87" />
<TextViewCompat
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:textSize="120sp"
android:text="10 min"
app:layout_constraintBottom_toTopOf="@+id/button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
使用android.support.v7.widget.TextViewCompat
或android.support.v7.widget.AppCompatTextView
根据 documentation:
,您无需执行此操作即可利用AppCompatTextView
This will automatically be used when you use TextView in your layouts and the top-level activity / dialog is provided by appcompat. You should only need to manually use this class when writing custom views.
基本上,当您构建应用程序时,appcompat 会将 XML 中各种 UI 小部件的实例换成 Compat 版本。只要您不扩展小部件,就不必担心这种行为(如果您确实想要扩展小部件,您会收到一条 lint 警告,告诉您该怎么做)。
如果您尝试从 Java/Kotlin 以编程方式操作自动调整大小 API,则只需要 TextViewCompat
。这是通过将视图查找为 TextView
,然后在 TextViewCompat
:
TextView textView = findViewById(R.id.textView);
TextViewCompat.setAutoSizeTextTypeWithDefaults(textview, myTextSizeType);