Androidx ConstraintLayout不允许移动子项或编辑其约束

时间:2018-06-11 14:54:19

标签: android android-constraintlayout androidx

我正在使用新的androidx库,而'input:not([type="hidden"]):not(#input_up_img_perfil):not(#sub_img_perfil)' 组件不允许在调色板中拖动它的子项,也不显示编辑其子项约束的能力。

这是XML:

androidx.constraintlayout.ConstraintLayout

这是gradle信息:

<?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>

还有其他人有这个问题吗?我该如何解决这个问题?

2 个答案:

答案 0 :(得分:0)

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

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

答案 1 :(得分:0)

我通过清理项目和无效缓存,重新启动

解决了该问题