android:text =“Hello World”的预览未显示。
我现在应该怎么解决呢?

<?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=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World"
        android:textColor="red"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

最佳答案

1.st用android.support.constraint.ConstraintLayout替换您的activity_main.xml布局androidx.constraintlayout.widget.ConstraintLayout2.nd进入app.gradle并添加到依赖 implementation 'androidx.constraintlayout:constraintlayout:1.1.3' java - 二进制xml文件第1行:错误夸大类&lt;未知&gt;现在我该怎么办?-LMLPHP
然后按立即同步

关于java - 二进制xml文件第1行:错误夸大类<未知>现在我该怎么办?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57231426/

10-10 17:26