我对这个错误进行了很多搜索,但最终看到每个人都建议卸载android studio并使用我认为不可行的所有sdk工作重新安装它。我们如何才能以一种体面的方式消除此错误,如果有人已经给出了正确的答案,请参考我的答案。
答案 0 :(得分:2)
请使用 app 而不是 android 。
app:layout_constraintWidth_percent="0.5"
另外,添加一个约束属性,如下所示:
app:layout_constraintStart_toStartOf="parent"
或
app:layout_constraintTop_toTopOf="parent"
your_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">
<Button
android:id="@+id/btn_temp"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintWidth_percent="0.5"
android:text="Hello World!"
app:layout_constraintTop_toTopOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>