如何将其置于ConstraintLayout中两个视图的最低位置之下?


72

我有两个标题视图,HeaderViewAHeaderViewB。这些视图可以具有可见性visible或的任意组合gone

我需要BigView被定位最低的任一HeaderViewA/ HeaderViewB

不嵌套就可以ConstraintLayout吗?

在此处输入图片说明


我希望听到一个不同的答案,但是afaik这是不可能的。
F43nd1r

有趣,但仅通过XML看起来不可能。您不希望嵌套视图,但是如果您愿意接受编程操作,则可以使用ConstraintSet
Cheticamp

为什么将ConstraintLayout嵌套会破坏交易?
Alex Meuer

@AlexMeuer嵌套布局会对性能产生负面影响(请参阅了解ConstraintLayout的性能优势的此报告)。因此,这是保持布局尽可能平坦的主要目标,并且ConstraintLayout具有所有必需的功能。
尤金·布鲁索夫

1
@EugeneBrusov所以我发现了。我相信我的评论是在发布障碍功能之前。是对类似问题的略有不同的看法。
Cheticamp

Answers:


111

现在,可以在约束布局v1.1.0中引入的Barrier类成为可能。

因此,这是针对您特定情况的解决方案:

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:context="com.example.eugene.test10.MainActivity">
    <TextView
        android:id="@+id/textView1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="#EEEEEE"
        android:text="TEXT_VIEW_1"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toLeftOf="@+id/textView2"/>

    <TextView
        android:id="@+id/textView2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="#DDDDDD"
        android:text="TEXT_VIEW_2"
        android:visibility="gone"
        app:layout_constraintLeft_toRightOf="@+id/textView1"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <android.support.constraint.Barrier
        android:id="@+id/labelBarrier"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:barrierDirection="bottom"
        app:constraint_referenced_ids="textView1,textView2" />

    <TextView
        android:id="@+id/textView3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="#CCCC00"
        android:text="TEXT_VIEW_3"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/labelBarrier" />

</android.support.constraint.ConstraintLayout>

使用此布局的结果如下:

在模拟器上查看

您可以在Codelab https://codelabs.developers.google.com/codelabs/constraint-layout/#10上参阅此分步指南。


1
为了实现屏障,我需要在项目中首先做些什么吗?
Zerato

2
@Zerato,您需要将'com.android.support.constraint:constraint-layout:1.1.0-beta3'依赖项添加到模块的gradle文件中,还将maven存储库添加到项目的gradle文件中。您可以在此GitHub项目github.com/googlecodelabs/constraint-layout中
Eugene Brusov

对于那些希望通过GUI工具访问这些障碍的人来说,无法通过textview,imageview等进行搜索,而是在具有指南的I型光束查找图标下拉列表中进行搜索。
Anders8 '18

1
androidx.constraintlayout.widget.Barrier的androidx
Mussa

app:i_love_these =“ android_x,constraint_layout” />
Siddharth Jaswal

1
<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/header_view_a"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="@android:color/holo_orange_light"
        android:gravity="center"
        android:text="HeaderViewA "
        android:layout_marginBottom="@dimen/sixteenDP"
        android:textSize="30sp"
        app:layout_constraintBottom_toTopOf="@+id/guideline"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/header_view_b"
        app:layout_constraintEnd_toStartOf="@+id/header_view_b"
        app:layout_constraintVertical_bias="0"
        app:layout_constraintWidth_default="wrap" />

    <TextView
        android:id="@+id/header_view_b"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:background="@android:color/holo_green_light"
        android:gravity="center"
        android:text="HeaderViewB"
        android:textAlignment="center"
        android:textSize="30sp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintBottom_toTopOf="@id/guideline"
        app:layout_constraintStart_toEndOf="@+id/header_view_a"/>

    <android.support.constraint.Guideline
        android:id="@+id/guideline"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.4"/>

    <TextView
        android:id="@+id/big_view"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginBottom="8dp"
        android:background="@android:color/holo_blue_dark"
        android:gravity="center"
        android:text="BigView"
        android:textAlignment="center"
        android:textSize="@dimen/list_item_height"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/guideline"
        app:layout_constraintVertical_bias="1.0"/>

</android.support.constraint.ConstraintLayout>

注意对于app:layout_constraintWidth_default="wrap"(具有宽度设置为0dp)。如果设置,则小部件将具有与使用wrap_content相同的大小,但是将受约束(即,约束不会扩展到它们之外)和限制app:layout_constraintVertical_bias="1.0"。使用偏向将BigView拉到其父级的底部。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.