У меня есть следующий макет, который я включаю в макет координатора и предоставляю ему поведение нижнего листа. Я установил высоту просмотра этого нижнего листа как 60%. Когда я прокручиваю обзор переработчика, нижняя таблица расширяется. Я не хочу, чтобы нижняя таблица расширялась / сворачивалась, пока пользователь не перетянет ее вручную. Как я могу добиться такого поведения. Спасибо!
<?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"
xmlns:tools="http://schemas.android.com/tools">
<FrameLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/linear_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="40dp">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="30dp"
android:focusable="true"
android:scaleType="center"
android:layout_gravity="clip_horizontal"
android:src="@drawable/image"
android:visibility="gone"/>
</androidx.appcompat.widget.Toolbar>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"/>
</LinearLayout>
</FrameLayout>
</layout>