Проблема с представлением переработчика внутри схемы ограничений
Я пытаюсь создать диалоговое окно нижнего листа на основе сложного макета. Чего мне нужно добиться, так это диалогового окна с макетом заголовка, представления переработчика со списком элементов и нижней панели с парой кнопок. Вот мой код:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- Layout injected inside this linear layout container programmatically -->
<LinearLayout
android:id="@+id/header_dialog_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@id/form_dialog_recycler_view"
app:layout_constraintTop_toTopOf="parent" />
<android.support.v7.widget.RecyclerView
android:id="@+id/form_dialog_recycler_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:layout_constraintBottom_toTopOf="@id/bottom_sheet_container_buttons"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/header_dialog_container" />
<LinearLayout
android:id="@+id/bottom_sheet_container_buttons"
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent">
<Button
android:id="@+id/dialog_sheet_button_reset"
style="@style/ActionSheetTitle"
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="0.5"
android:background="@color/bottomBarContainerColor"
android:text="@string/general_reset"
android:textColor="@color/dangerColor" />
<Button
android:id="@+id/dialog_sheet_button_close"
style="@style/ActionSheetTitle"
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="0.5"
android:background="@color/bottomBarContainerColor"
android:text="@string/general_close" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
</layout>
К сожалению, высота моего рециркулятора всегда равна нулю. Я пытался изменить android:layout_height="0dp"
в android:layout_height="wrap_content"
но, как и ожидалось, он опускается ниже нижнего контейнера. Я что-то пропустил?
5 ответов
Пытаться
app:layout_constraintHeight_default="wrap"
за
RecyclerView
если это внутри
ConstraintLayout
.
Используйте app:layout_constrainedHeight="true" в своем RecyclerView. Он будет регулировать внутренние ограничения и не будет опускаться ниже нижнего контейнера.
Я закончил с другим решением. Я изменил макет ограничения с помощью линейного макета. И я установил нижние поля.
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:id="@+id/header_dialog_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<android.support.v7.widget.RecyclerView
android:id="@+id/form_dialog_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="60dp"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<LinearLayout
android:id="@+id/bottom_sheet_container_buttons"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginTop="-60dp"
android:orientation="horizontal">
<Button
android:id="@+id/dialog_sheet_button_reset"
style="@style/ActionSheetTitle"
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="0.5"
android:background="@color/bottomBarContainerColor"
android:text="@string/general_reset"
android:textColor="@color/dangerColor" />
<Button
android:id="@+id/dialog_sheet_button_close"
style="@style/ActionSheetTitle"
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="0.5"
android:background="@color/bottomBarContainerColor"
android:text="@string/general_close" />
</LinearLayout>
</LinearLayout>
</layout>
Попробуйте этот код:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- Layout injected inside this linear layout container programmatically -->
<LinearLayout
android:id="@+id/header_dialog_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@id/form_dialog_recycler_view"
app:layout_constraintTop_toTopOf="parent" />
<android.support.v7.widget.RecyclerView
android:id="@+id/form_dialog_recycler_view"
android:layout_width="0dp"
android:layout_height="0dp"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:layout_constraintBottom_toTopOf="@id/bottom_sheet_container_buttons"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/header_dialog_container" />
<LinearLayout
android:id="@+id/bottom_sheet_container_buttons"
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent">
<Button
android:id="@+id/dialog_sheet_button_reset"
style="@style/ActionSheetTitle"
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="0.5"
android:background="@color/bottomBarContainerColor"
android:text="@string/general_reset"
android:textColor="@color/dangerColor" />
<Button
android:id="@+id/dialog_sheet_button_close"
style="@style/ActionSheetTitle"
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="0.5"
android:background="@color/bottomBarContainerColor"
android:text="@string/general_close" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
</layout>
TLDR: изменить высоту макета ограничения на match_parent, изменить нижний родительский лист на фиксированную высоту
Ваш макет ограничения имеет
android:layout_height="wrap_content"
, в то время как ваш recyclerView имеет
android:layout_height="0dp"
(соответствует ограничениям на совпадения), это приведет к тому, что ваш recyclerView займет как можно меньше места, то есть ни одного (ограничение установлено как перенос). Я подозреваю, что вы также используете нижний лист с
android:layout_height="wrap_content"
, так что установка высоты макета ограничения равной match_parent не будет иметь значения.
Здесь нужно сделать так, чтобы ваш нижний лист имел фиксированную высоту
android:layout_height="@dimen/the_dimension_you_set"
это изменит ограничение на recyclerView от минимально возможного до максимально возможного *. Если высота слишком мала, это приведет к тому же эффекту. Я предлагаю взглянуть на рекомендации по дизайну материалов, примеры высоты нижнего листа.
* Как можно больше и как можно меньше - это упрощение. В действительности 0dp означает всегда "как можно больше", но с переопределением родительского макета wrap_content (что означает "занять как можно меньше места") "как можно больше" - 0 равно 0
Я описал это довольно плохо, поэтому я поставил TLDR