为什么Android工作室显示“约束布局中缺少约束”的错误?

图片

此视图不受约束,它只有设计时位置,因此除非您添加约束,否则它将跳转到 (0,0)

布局编辑器允许您将构件放置在画布上的任意位置,并使用设计时属性(如 layout_editor_absolute X)记录当前位置。这些属性不会在运行时应用,因此,如果在设备上推送布局,则微件可能会显示在与编辑器中显示的位置不同的位置。要解决此问题,请确保微件同时具有水平和垂直约束,方法是从边缘连接拖动


答案 1

解决这个问题非常简单。只需单击小部件(例如按钮或文本框等),然后单击“推断约束”按钮。您可以在随附的图片或此Youtube链接中看到:https://www.youtube.com/watch?v=uOur51u5Nk0

Infer constraints picture


答案 2

您可能具有具有以下属性的微件:

    tools:layout_editor_absoluteX="someValue"
    tools:layout_editor_absoluteY="someValue"

tools命名空间仅在开发时使用,并且在安装apk时将被删除,因此所有布局都可能显示在左上角的位置。查看工具属性参考

要解决此问题:您应该使用布局约束,例如:

layout_constraintLeft_toLeftOf
layout_constraintLeft_toRightOf
layout_constraintRight_toLeftOf
layout_constraintRight_toRightOf
layout_constraintTop_toTopOf
layout_constraintTop_toBottomOf
layout_constraintBottom_toTopOf
layout_constraintBottom_toBottomOf
layout_constraintBaseline_toBaselineOf
layout_constraintStart_toEndOf
layout_constraintStart_toStartOf
layout_constraintEnd_toStartOf
layout_constraintEnd_toEndOf

您可以浏览 ConstraintLayout 的文档并使用 ConstraintLayout 构建响应式 UI 以获取更多详细信息

编辑:

从您发布的图片中,我尝试使用以下代码添加适当的约束,以便TextView处于中心位置:

<android.support.constraint.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">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

推荐