我在我的布局中使用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"/>
这是支持约束布局的示例屏幕截图: android.support.constraint.ConstraintLayout
这是一个错误还是什么?
编辑:
我目前的解决方案是从:
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
到
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
但这并不能解决我的问题,因为我不想使用支持。