Детский вид с одинаковым ростом и максимальным ростом - PullRequest
0 голосов
/ 01 июня 2018

Я пытаюсь воспроизвести на андроид то, что довольно легко для ios.

Я хочу иметь виды той же высоты, где высота определяется во время выполнения.Высота представлений должна основываться на представлении с наибольшей высотой.

Я нашел похожий вопрос ( ссылка ), но он основан на кнопках, возможно, причина, по которой мое решение не являетсяworking.

Пример:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:baselineAligned="false">

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" >
    <!--Other views-->
    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" >
    <!--Other views-->
    </LinearLayout>

</LinearLayout>

Может быть, есть решение для этого с помощью дизайнера. Если это невозможно, я думаю, что мне, возможно, придется делать это программно, находя наибольшую высоту, а затем назначая высоту другим видам (Если вы знаете, как это сделать, я также приму это как правильный ответ).

ОБНОВЛЕНИЕ:

Я нарисовал 2 изображения, чтобы проиллюстрировать мою проблему.Серая область - это родительский линейный макет.Зеленая зона у детей линейная планировка.Красные области - это «другие виды», как указано на схеме выше.

Фактический результат: enter image description here

Ожидаемый результат: enter image description here

Ответы [ 2 ]

0 голосов
/ 01 июня 2018

Итак, вы идете

<?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">

    <!--The linear layouts are only for representation.
    Constraint layout only hs direct children, baring a few.
    You can use packed chain for aligning the text views together in
    center vertical-->

    <LinearLayout
        android:id="@+id/left_layout"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="@color/colorAccent"
        android:gravity="center"
        android:orientation="vertical"
        app:layout_constraintBottom_toTopOf="@+id/barrier_demo"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@id/right_layout"
        app:layout_constraintTop_toTopOf="parent">
        <!--Other views-->
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:textColor="#fff"
            android:background="@color/colorPrimary" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="15dp"
            android:background="@color/colorPrimary" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/right_layout"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="@color/colorAccent"
        android:gravity="center"
        android:orientation="vertical"
        app:layout_constraintLeft_toRightOf="@id/left_layout"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toTopOf="@+id/barrier_demo"
        >
        <!--Other views-->
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:background="@color/colorPrimary" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:background="@color/colorPrimary" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:background="@color/colorPrimaryDark"
            android:textColor="#fff" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:background="@color/colorPrimary"

            android:textColor="#fff" />
    </LinearLayout>

    <android.support.constraint.Barrier
        android:id="@+id/barrier_demo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:barrierDirection="bottom"
        app:constraint_referenced_ids="left_layout,right_layout"
        />


</android.support.constraint.ConstraintLayout>

Независимо от того, какой объем текста вы поместите в текстовом представлении, даже тот, который слева, будет содержать многострочные тексты, правильное расположение будет отрегулировано.Это достигается через барьер в макете ограничения.

Эта страница объясняет это удивительным образом.Еще одна вещь, которую вы должны избегать вложения внутри макета ограничения.Вертикальное выравнивание по центру может быть достигнуто с помощью цепочки пакетов

Этот средний материал является хорошим источником.

0 голосов
/ 01 июня 2018

Я достиг макета, похожего на ваше второе изображение, со следующими настройками

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:baselineAligned="false">

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:orientation="vertical"
    android:gravity="center"
    android:layout_margin="20dp"
    android:background="@color/colorAccent">
    <!--Other views-->
    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_margin="15dp"
        android:background="@color/colorPrimary"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_margin="15dp"
        android:background="@color/colorPrimary"/>
</LinearLayout>

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:orientation="vertical"
    android:gravity="center"
    android:layout_margin="20dp"
    android:background="@color/colorAccent">
    <!--Other views-->
    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_margin="15dp"
        android:background="@color/colorPrimary"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_margin="15dp"
        android:background="@color/colorPrimary"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_margin="15dp"
        android:background="@color/colorPrimary"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_margin="15dp"
        android:background="@color/colorPrimary"/>
</LinearLayout>

...