Android:ConstraintsLayout VS No Constraints ViewGroups

时间:2017-07-13 13:14:35

标签: android android-layout android-animation android-constraintlayout android-viewgroup

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

为了能够使用约束来实现这种行为,我必须将Bottom部分嵌套在其他ConstraintLayout中。是否有另一种方法可以在不使用嵌套的情况下使用ConstraintLayout实现相同的行为? 我发现的另一个问题是,当我要动画嵌套ConstraintLayout内部视图的约束时,不要执行任何动画。外部视图是。是否可以执行嵌套的Constraints动画? 这些是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>

问候!

1 个答案:

答案 0 :(得分:0)

如果您更新到ConstraintLayout的1.1.x版,则可以使用屏障将这两个部分分开,如下所示。屏障漂浮在两个ImageViews之上,上部的底部被限制在屏障的顶部,因此,当屏障漂浮时,顶部的底部也会这样做。

HereConstraintLayout 1.0.1 beta 1的发行说明。此Stack Overflow answer引用了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" />