проблема для запуска viewpager в slideUppanellayout - PullRequest
0 голосов
/ 05 декабря 2018

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

    <com.sothree.slidinguppanel.SlidingUpPanelLayout
    xmlns:sothree="http://schemas.android.com/apk/res-auto"
    android:id="@+id/sliding_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="bottom"
    sothree:umanoPanelHeight="68dp"
    sothree:umanoShadowHeight="4dp">
    <include
        layout="@layout/slidet"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

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

Макет слайда состоит из пейджера вида внутри него, как показано ниже -

  <android.support.design.widget.TabLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:tabGravity="fill"
    app:tabMode="fixed"
    android:id="@+id/tabMode"
    app:tabIndicatorColor="@color/tabindicatorcolor"
    android:background="@color/trans"
    app:tabTextColor="@color/tabletextcolor"/>
<android.support.v4.view.ViewPager
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/viewpager">
</android.support.v4.view.ViewPager>

один слайд работает хорошо, но вскользящая панель ничего не показывает

...