Android:约束布局 VS 无约束视图组

Android: ConstraintsLayout VS No Constraints ViewGroups

我有两个布局提供相同的结果。第一个是在没有约束的情况下创建的,第二个是使用 constraints.The 创建的结果由两个竞争可用 space 的兄弟部分(一个在另一个之上)组成。底部部分优先于顶部部分,因此后者必须符合底部部分不需要的 space。 Bottom 部分的顶部也由包含其内容的顶部给出。 Example image

为了能够使用约束实现此行为,我不得不将底部部分嵌套在其他 ConstraintLayout 中。是否有另一种方法可以在不使用嵌套的情况下使用 ConstraintLayout 实现相同的行为? 我发现的另一个问题是,当我要为嵌套 ConstraintLayout 内的视图的约束设置动画时,不要执行任何 animation.The 外部视图是的。是否可以执行嵌套约束动画? 这些是 XML 个使用过的文件:

无约束版本:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:id="@+id/top_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/bottom_container">

        <Button
            android:id="@+id/remove_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    </RelativeLayout>

    <LinearLayout
        android:id="@+id/bottom_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="bottom"
        android:layout_alignParentBottom="true">

        <ImageView
            android:id="@+id/car_image"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:src="@drawable/ic_directions_car_black_24dp"/>

        <ImageView
            android:id="@+id/loto_image"
            android:layout_width="60dp"
            android:layout_height="80dp"
            android:src="@drawable/ic_spa_black_24dp"/>
    </LinearLayout>

</RelativeLayout>

ConstraintLayout 版本:

<android.support.constraint.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/main_constlayout_container">

    <View
        android:id="@+id/top_container_view"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toTopOf="@+id/bottom_constlayout_container"/>

    <Button
        android:id="@+id/remove_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"/>

    <android.support.constraint.ConstraintLayout
        android:id="@+id/bottom_constlayout_container"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toBottomOf="parent">

        <ImageView
            android:id="@+id/car_image"
            android:layout_width="60dp"
            android:layout_height="60dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            android:src="@drawable/ic_directions_car_black_24dp"/>

        <ImageView
            android:id="@+id/loto_image"
            android:layout_width="60dp"
            android:layout_height="80dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toRightOf="@id/car_image"
            android:src="@drawable/ic_spa_black_24dp"/>

    </android.support.constraint.ConstraintLayout>

</android.support.constraint.ConstraintLayout>

此致!

如果您更新到 ConstraintLayout 的版本 1.1.x,您可以使用屏障来分隔这两个部分,如下所示。障碍物漂浮在两个 ImageViews 上方,上部的底部被限制在障碍物的顶部,因此,当障碍物漂浮时,顶部部分的底部也会漂浮。

Here are the release notes for ConstraintLayout 1.0.1 beta 1. This Stack Overflow 参考了一些关于 ConstraintLayout.

新功能的文档

如果您知道其中一个图像视图总是比另一个高,您可以放弃障碍,只需将上部视图的底部连接到较高图像视图的顶部即可。

如果进行这些更改,您可以看到动画的位置。

<View
    android:id="@+id/top_container_view"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:background="#FF00FF00"
    app:layout_constraintBottom_toTopOf="@+id/barrier"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<Button
    android:id="@+id/remove_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<android.support.constraint.Barrier
    android:id="@+id/barrier"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:barrierDirection="top"
    app:constraint_referenced_ids="car_image,loto_image" />

<ImageView
    android:id="@+id/car_image"
    android:layout_width="60dp"
    android:layout_height="60dp"
    android:src="@drawable/ic_directions_car_black_24dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent" />

<ImageView
    android:id="@+id/loto_image"
    android:layout_width="60dp"
    android:layout_height="189dp"
    android:src="@drawable/ic_spa_black_24dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toRightOf="@id/car_image"
    tools:layout_editor_absoluteY="322dp" />