从Compat库迁移到androidx之后,大家好。
我遇到了与约束布局有关的问题,例如custom:layout_constraintBottom_toBottomOf="parent"
停止工作,我不得不添加{{1}}。
编辑
这只是为了在迁移到androidx之后共享我的信息。
答案 0 :(得分:-1)
以此替换您的约束标签。试试吧。
<androidx.constraintlayout.widget.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"
>
像这样
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView"