迁移到android x后出现约束布局问题

时间:2019-08-01 03:31:15

标签: android constraints android-constraintlayout androidx

从Compat库迁移到androidx之后,大家好。

我遇到了与约束布局有关的问题,例如custom:layout_constraintBottom_toBottomOf="parent"停止工作,我不得不添加{{1}}。

编辑

这只是为了在迁移到androidx之后共享我的信息。

1 个答案:

答案 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"