Как обеспечить прокрутку в нижнем листе XML? - PullRequest
0 голосов
/ 07 февраля 2019

У меня есть экран, на котором я разместил нижний лист.Проблема заключается в том, что когда я прокручиваю нижний лист вверх по itexpands, но страница нижнего листа не прокручивается.У меня есть линейный макет с горизонтальной прокруткой и 2 просмотра изображений, но страница не с вертикальной прокруткой, чтобы я мог видеть все 3 элемента.Когда я помещаю представление прокрутки в нижний лист xml, первое содержимое прокручивается в свернутом состоянии, а затем нижний лист расширяется.Как сделать прокрутку.

Вот код:

Main Screen.xml

<android.support.design.widget.CoordinatorLayout 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">

    <fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_gravity="center"
        android:layout_height="match_parent"/>

    <include layout="@layout/bottom_sheet_clone" />

</android.support.design.widget.CoordinatorLayout>

BottomSheet.xml

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/bottom_sheet_clone"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:behavior_peekHeight="60dp"
    android:background="@color/black"
    app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/linearScrollView">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/idRecyclerViewHorizontalList"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            />
    </LinearLayout>

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/poster1"
        android:layout_below="@+id/linearScrollView"
        android:layout_marginTop="10dp"
        android:src="@drawable/bs4"
        android:scaleType="centerCrop"/>

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/poster2"
        android:layout_below="@+id/poster1"
    android:layout_marginTop="10dp"/>

</RelativeLayout>
...