ListView не прокручивается с помощью библиотеки Sliding up - PullRequest
0 голосов
/ 17 декабря 2018

У меня есть список песен и выдвижная панель с кнопками, но я не могу, я не могу пролистать песни.Я могу прокручивать, когда убираю скользящую панель.У меня также есть макет вкладок с вкладками, но я не могу пролистывать вкладки, и единственный способ, которым я не могу переключать вкладки, - это нажимать вкладки сверху.

Вот мой XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout     xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<com.sothree.slidinguppanel.SlidingUpPanelLayout     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:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="bottom"
    tools:context=".MainActivity"
    app:umanoPanelHeight="70dp"
    app:umanoShadowHeight="5dp">

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

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

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

    <RelativeLayout

        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clickable="true"
        android:focusable="false">

        <include layout="@layout/slideup_nowplaying"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    </RelativeLayout>

</com.sothree.slidinguppanel.SlidingUpPanelLayout>

</RelativeLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...