在布局XML文件中检查控件的命名空间是否正确,并确保您的应用程序支持 API 级别 29。
示例代码:
在布局文件中:
正确的命名空间为:
app:layout_constraintBottom_toTopOf="@id/parent" // 正确的命名空间 app:layout_constraintLeft_toLeftOf="@id/parent" app:layout_constraintRight_toRightOf="@id/parent" app:layout_constraintTop_toTopOf="@id/parent"
确保您的应用程序支持 API 级别 29:
在您的应用程序的 build.gradle 文件中,将 targetSdkVersion 设置为 29。
android { compileSdkVersion 29 buildToolsVersion "29.0.2" defaultConfig { applicationId "com.example.myapplication" minSdkVersion 21 targetSdkVersion 29 // 设置为 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } // ... }