使用ConstraintLayout模仿TableLayout

时间:2017-03-17 14:31:31

标签: android android-layout layout android-constraintlayout

我想用ConstraintLayout做这个布局。

enter image description here 但我甚至没能做到它的1(绿色)部分。

我做的是添加3个TextViews 1,2和3(粉红色)将它们连接到父级的左侧并告诉它们在另一个之下。它有效。

然后我需要添加视图4和5,因此它们总是位于2和3的右侧,其内容必须垂直对齐左边缘,如图所示。

添加

时的问题
 app:layout_constraintLeft_toRightOf="2 OR 3" 

4和5中的文字未正确对齐。我明白了

enter image description here

当我使用指南时,我得到了这个

 app:layout_constraintLeft_toRightOf="@id/guideline"

enter image description here

有谁知道有什么可以帮助解决这个问题?

编辑。附:第一次尝试的布局

 <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"
 android:padding="16dp"
 android:id="@+id/constraintLayout"
 >

<TextView
    android:id="@+id/instrument_name"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:text="AUDUSD"
    app:layout_constraintStart_toStartOf="@+id/constraintLayout"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"/>

<TextView
    android:id="@+id/trade_action_label"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="BUYjhkjhkjhvg"
    app:layout_constraintStart_toStartOf="@+id/instrument_name"
    app:layout_constraintTop_toBottomOf="@id/instrument_name"
    tools:layout_editor_absoluteX="16dp"
    android:layout_marginTop="1dp"/>

<TextView
    android:id="@+id/net_pl"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Net p/l"
    app:layout_constraintStart_toStartOf="@+id/trade_action_label"
    app:layout_constraintTop_toBottomOf="@id/trade_action_label"/>

<TextView
    android:id="@+id/record_amount"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="123"
    app:layout_constraintTop_toTopOf="@id/trade_action_label"
    app:layout_constraintLeft_toRightOf="@id/trade_action_label"
    tools:layout_editor_absoluteY="33dp"
    />

<TextView
    android:id="@+id/pl_value"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="12"
    app:layout_constraintTop_toTopOf="@id/net_pl"
    app:layout_constraintLeft_toRightOf="@id/net_pl"/>
 </android.support.constraint.ConstraintLayout>

编辑。 (结果应如何显示的截图) enter image description here

2 个答案:

答案 0 :(得分:3)

我仔细研究了你要做的事情。我认为您需要在ConstraintLayout中考虑使用加权链。请参阅文档here

确保使用实现链的ConstraintLayout版本。

<强>更新

以下是您要尝试的示例。我简化了您的布局,以更好地展示可行的方法。注意box1&lt; - &gt; box2和box3&lt; - &gt; box4的交叉链接。这些链接建立了链条。

<?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:id="@+id/constraintLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp"
    tools:layout_editor_absoluteX="0dp"
    tools:layout_editor_absoluteY="81dp">

<TextView
    android:id="@+id/box1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="0dp"
    android:layout_marginTop="16dp"
    android:text="Text box 1 xxxxxxx"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toLeftOf="@+id/box2"
    app:layout_constraintTop_toTopOf="parent" />

<TextView
    android:id="@id/box2"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="0dp"
    android:layout_marginTop="0dp"
    android:text="Text box 2 yyyyyyyyyy"
    app:layout_constraintLeft_toRightOf="@id/box1"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="@id/box1" />

<TextView
    android:id="@+id/box3"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="0dp"
    android:layout_marginTop="0dp"
    android:text="Text box 3 zzzz"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toLeftOf="@+id/box4"
    app:layout_constraintTop_toBottomOf="@id/box1" />

<TextView
    android:id="@id/box4"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="0dp"
    android:layout_marginTop="0dp"
    android:text="Text box 4"
    app:layout_constraintLeft_toRightOf="@id/box3"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="@id/box3" />

</android.support.constraint.ConstraintLayout>

以下是布局image of the layout的图片。

使用app:layout_constraintHorizontal_weight来影响每个视图获得的空间。

答案 1 :(得分:3)

您可以使用Barrier复制TableLayout的行为。

enter image description here

<?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"
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginTop="16dp"
    android:text="@string/warehouse"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

  <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginTop="8dp"
    android:text="@string/hospital"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView1" />

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

  <TextView
    android:id="@+id/textView3"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:text="@string/lorem_ipsum"
    app:layout_constraintStart_toEndOf="@+id/barrier7"
    app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

此处有更多信息:https://constraintlayout.com/basics/barriers.html