androidx.constraintlayout.widget.constraintlayout 没有可以拖动的链条

androidx.constraintlayout.widget.constraintlayout don't have chains that you can drag

我在我的布局中使用 androidx.constraintlayout.widget.ConstraintLayout 但它不显示链条,而且我无法拖动任何小部件。我只是输入我想使用的约束。

<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="112dp"/>

这是 androidx constraintLayout 的示例屏幕截图: androidx.constraintlayout.widget.ConstraintLayout

但是当我尝试切换回时:android.support.constraint.ConstraintLayout 我可以看到它

<android.support.constraint.ConstraintLayout
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="112dp"/>

这是支持 constraintLayout 的示例屏幕截图: android.support.constraint.ConstraintLayout

这是错误还是什么?

编辑:

我目前的解决方案是切换自:

implementation 'androidx.constraintlayout:constraintlayout:1.1.2'

implementation 'com.android.support.constraint:constraint-layout:1.1.2'

但这并不能解决我的问题,因为我不想使用支持。

我遇到了同样的问题,直到我意识到我应该使用 Canary 版本来解决它。 在稳定版旁边安装 Canary 版本后,打开项目,现在你可以使用这个实现:

implementation 'androidx.constraintlayout:constraintlayout:1.1.2'

而不是

implementation 'com.android.support.constraint:constraint-layout:1.1.2'

请记住,您可能需要执行以下操作:

  • 清理项目
  • 重建
  • 无效caches/restart

我的问题用这个方法解决了。

如果您使用的是最新的 Android 更新 3.3.3,则从支持约束布局迁移到 Android x:

<android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>

<androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

为了得到这个也改变 gradle:

实施com.android.support.constraint:约束布局:1.1.3

实现androidx.constraintlayout:constraintlayout:2.0.0-alpha3