在ConstraintLayout中对齐包含链的一组视图

时间:2017-06-21 20:39:29

标签: android android-layout android-constraintlayout

我在ConstraintLayout中有三个视图,并希望像这样对齐:

enter image description here

现在,观看 B C 形成一个垂直链, A 相对于链居中。但是如何将整个组对齐在父级中心?请注意,查看 C 可能为GONE

2 个答案:

答案 0 :(得分:15)

这是一个没有嵌套布局的视觉答案。

enter image description here

步骤

  1. Chain and pack B和C垂直
  2. 链条和水平包装A和C
  3. 对齐B和C水平中心
  4. 垂直中心A
  5. XML布局

    <?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=".MainActivity">
    
        <TextView
            android:id="@+id/textView"
            android:layout_width="69dp"
            android:layout_height="67dp"
            android:background="#fb0000"
            android:gravity="center"
            android:text="A"
            android:textColor="#000000"
            android:textSize="30sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/textView3"
            app:layout_constraintHorizontal_bias="0.5"
            app:layout_constraintHorizontal_chainStyle="packed"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    
        <TextView
            android:id="@+id/textView2"
            android:layout_width="154dp"
            android:layout_height="73dp"
            android:background="#2000ff"
            android:gravity="center"
            android:text="B"
            android:textColor="#ffffff"
            android:textSize="30sp"
            app:layout_constraintBottom_toTopOf="@+id/textView3"
            app:layout_constraintEnd_toEndOf="@+id/textView3"
            app:layout_constraintStart_toStartOf="@+id/textView3"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_chainStyle="packed" />
    
        <TextView
            android:id="@+id/textView3"
            android:layout_width="187dp"
            android:layout_height="61dp"
            android:background="#f1a500"
            android:gravity="center"
            android:text="C"
            android:textColor="#000000"
            android:textSize="30sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.5"
            app:layout_constraintStart_toEndOf="@+id/textView"
            app:layout_constraintTop_toBottomOf="@+id/textView2" />
    
    </android.support.constraint.ConstraintLayout>
    

    个人意见

    切换到Flutter。布局比ConstraintLayout容易得多。

答案 1 :(得分:2)

以群组为中心的最简单,最容易理解的方法是将视图嵌套在ConstraintLayout内,并将其嵌套在ConstraintLayout中,如下所示:

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

    <android.support.constraint.ConstraintLayout
        android:id="@+id/innerLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        [A, B, and C views here...]

    </android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>

外部布局可以是ViewGroup的另一种类型,例如使用LinearLayout的{​​{1}}。

其他解决方案也是可能的,例如创造性地使用链条,障碍或指南,但在我看来,概述解决方案的简单性是最具吸引力的。