ConstraintLayout контент застрял в середине экрана - PullRequest
0 голосов
/ 04 февраля 2019

После добавления ConstraintLayout внутри ScrollView я заметил, что содержимое остается застрявшим в середине экрана (как по горизонтали, так и по вертикали).Я уже пытался добавить android:layout_gravity="top" к основному ConstraintLayout, но это не сработало.Есть ли что-то еще, что я могу использовать для позиционирования контента вверху?

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    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="wrap_content"
    android:fillViewport="true">
    <androidx.constraintlayout.widget.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/cl_main"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingStart="@dimen/activity_horizontal_margin"
        android:paddingEnd="@dimen/activity_horizontal_margin">

        <androidx.cardview.widget.CardView
            android:id="@+id/cv_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="30dp"
            app:cardUseCompatPadding="true"
            app:contentPadding="10dp"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintBottom_toTopOf="@+id/tv_disclaimer">

            <LinearLayout
                android:id="@+id/ll_title"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

                <ImageView
                    android:id="@+id/iv_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="top"
                    android:importantForAccessibility="no"
                    android:paddingEnd="10dp" />

                <TextView
                    android:id="@+id/tv_title"
                    style="@android:style/TextAppearance.Medium"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textColor="?android:attr/textColorPrimary" />
            </LinearLayout>
        </androidx.cardview.widget.CardView>

        <TextView
            android:id="@+id/tv_disclaimer"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:gravity="center"
            android:textColor="?android:attr/textColorPrimary"
            app:layout_constraintTop_toBottomOf="@+id/cv_title"
            app:layout_constraintBottom_toTopOf="@+id/cv_description"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            style="@android:style/TextAppearance.Medium" />

        <androidx.cardview.widget.CardView
            android:id="@+id/cv_description"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:cardUseCompatPadding="true"
            app:contentPadding="10dp"
            app:layout_constraintTop_toBottomOf="@+id/tv_disclaimer"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent">
            <androidx.constraintlayout.widget.ConstraintLayout
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                android:id="@+id/cl_description"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
                <LinearLayout
                    android:id="@+id/ll_allergies"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal"
                    app:layout_constraintTop_toTopOf="parent"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintBottom_toTopOf="@+id/ll_ingredients">

                    <ImageView
                        android:id="@+id/iv_allergies"
                        android:importantForAccessibility="no"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:paddingEnd="5dp"/>

                    <TextView
                        android:id="@+id/tv_allergies"
                        style="@android:style/TextAppearance.Large"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_vertical"
                        android:textColor="?android:attr/textColorPrimary" />
                </LinearLayout>

                <LinearLayout
                    android:id="@+id/ll_allergyinfo"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal"
                    app:layout_constraintTop_toBottomOf="@+id/ll_allergies"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintBottom_toTopOf="@+id/ll_ingredients">
                    <TextView
                        android:id="@+id/tv_allergyinfo"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:textColor="?android:attr/textColorPrimary"
                        android:layout_marginBottom="2dp"
                        android:gravity="start"
                        style="@android:style/TextAppearance.Medium" />
                </LinearLayout>

                <LinearLayout
                    android:id="@+id/ll_ingredients"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal"
                    app:layout_constraintTop_toBottomOf="@+id/ll_allergyinfo"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintBottom_toBottomOf="parent">
                    <ImageView
                        android:id="@+id/iv_ingredients"
                        android:importantForAccessibility="no"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:paddingEnd="5dp" />

                    <TextView
                        android:id="@+id/tv_ingredients"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_vertical"
                        android:textColor="?android:attr/textColorPrimary"
                        style="@android:style/TextAppearance.Large" />
                </LinearLayout>
            </androidx.constraintlayout.widget.ConstraintLayout>
        </androidx.cardview.widget.CardView>
    </androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>

Текущий результат

enter image description here

Ответы [ 3 ]

0 голосов
/ 04 февраля 2019

Попробуйте удалить app:layout_constraintTop_toTopOf="parent" из ваших ll_allergies LinearLayout.При копировании на мою AS именно эта строка добавляла ненужное пространство между textview и макетом.В качестве альтернативы, сохраните ограничение и добавьте 0dp к его высоте, чтобы оно наложило ограничение.

ОБНОВЛЕНИЕ после комментария: я думаю, что ваши представления перекрываются, потому что нижнее ограничение ll_allergies находится на вершине ll_ingredients вместо ll_allergyinfo.Попробуйте изменить это:

app:layout_constraintBottom_toTopOf="@id/ll_ingredients"

на это:

app:layout_constraintBottom_toTopOf="@id/ll_allergyinfo"

и верните wrap_content из ll_alergies.Надеюсь, теперь все встанет на свои места

0 голосов
/ 04 февраля 2019

Здесь происходят две важные вещи.

Во-первых, ваш ScrollView указывает android:fillViewport="true".Это означает, что всякий раз, когда содержимое ScrollView «меньше», чем размер экрана, оно будет растягиваться для заполнения экрана.Другими словами, ваш wrap_content ConstraintLayout фактически только обернет его содержимое , когда вам придется прокручивать.Во всех других случаях ваш ConstraintLayout будет функционально иметь высоту match_parent.

Во-вторых, ограничения для вашего CardView, TextView и второго CardView образуют вертикальную цепочку .Цепи имеют особое поведение в отношении расстояния, когда родительский элемент больше, чем сумма представлений в цепочке (что связано с поведением fillViewport, описанным выше);по умолчанию используется «распространение», при котором три вида будут расположены таким образом, чтобы все оставшееся пространство было равномерно разделено на четыре блока (один в начале цепочки, один между первыми двумя представлениями, один между вторыми двумя представлениями ипоследний в конце цепочки).

Как это исправить?

Лучше всего разорвать цепь .Предполагая, что вы просто хотите, чтобы все представления располагались один за другим, начиная с верхней части экрана, нет необходимости использовать цепочку.Чтобы разорвать цепочку, удалите нижнее ограничение из каждого представления:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    ...>

    <androidx.constraintlayout.widget.ConstraintLayout
        ...>

        <androidx.cardview.widget.CardView
            android:id="@+id/cv_title"
            ...
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent">

            ...

        </androidx.cardview.widget.CardView>

        <TextView
            android:id="@+id/tv_disclaimer"
            ...
            app:layout_constraintTop_toBottomOf="@+id/cv_title"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"/>

        <androidx.cardview.widget.CardView
            android:id="@+id/cv_description"
            ...
            app:layout_constraintTop_toBottomOf="@+id/tv_disclaimer"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent">

            ...

        </androidx.cardview.widget.CardView>

    </androidx.constraintlayout.widget.ConstraintLayout>

</ScrollView>

В качестве альтернативы, вы можете удалить атрибут fillViewport из вашего ScrollView.Без этого дочерний объект ConstraintLayout никогда не растянется на весь экран, и wrap_content будет означать, что между вашими цепочечными представлениями никогда не будет дополнительного пространства.

0 голосов
/ 04 февраля 2019

Обновление : ответ больше не действителен после обновления кода

В вашем коде есть ошибки:

1.Вы установленымакет должен быть до самого себя

android:id="@+id/ll_ingredients"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintTop_toBottomOf="@+id/ll_ingredients"`
идентификатор " ll_alighting " не определен
...