0

我正在使用新的 androidx 库,并且该androidx.constraintlayout.ConstraintLayout组件不允许在调色板中拖动其子级,并且不显示编辑其子级约束的能力。

这是 XML:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".AddNewPlayer">

    <com.google.android.material.textfield.TextInputEditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/player_name_field"
        android:hint="Player Name" />

</androidx.constraintlayout.ConstraintLayout>

这是毕业信息:

implementation 'androidx.constraintlayout:constraintlayout:1.1.1'
implementation 'com.google.android.material:material:1.0.0-alpha3'

其他人遇到过这个问题吗?我该如何解决这个问题?

4

2 回答 2

0

我通过清理项目和使缓存无效,重新启动解决了这个问题

于 2019-12-06T06:29:02.583 回答
0

ConstraintLayout 团队的某个人回答了我的 reddit 问题 - 显然库的 1.1.1 版本存在问题,使用 1.1.0 解决了这个问题。

来源:https ://www.reddit.com/r/androiddev/comments/8qaaye/help_androidx_constraintlayout_does_not_allow_its/e0hz5mv

于 2018-06-11T19:15:18.393 回答