滑动面板(Umano)面临一些问题

时间:2017-02-01 05:45:59

标签: android android-layout panel slidingdrawer android-screen-support

我在我的第一个app(音乐播放器)屏幕上成功创建了Sliding up面板,我也有一个导航抽屉。现在问题是这个向上滑动面板仅在第一个屏幕上可用。我想要它用于我的所有屏幕(下载等)。我想要像Gaana和Google Play Music这样的应用程序。 我在创建向上滑动面板时提到了这个

https://www.numetriclabz.com/implementation-of-sliding-up-panel-using-androidslidinguppanel-in-android-tutorial/

请帮助,谢谢!

1 个答案:

答案 0 :(得分:0)

<强>阐释: -

<com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/frag_product_list_panel"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipToPadding="false"
    android:gravity="bottom"
    android:orientation="vertical"
    app:umanoDragView="@+id/dragView"
    app:umanoOverlay="true"
    app:umanoPanelHeight="0dp"
    app:umanoParallaxOffset="0dp"
    app:umanoShadowHeight="@dimen/2dp">

    <!-- Main content, Use this container to transact fragments -->
    <FrameLayout
        android:id="@+id/dragView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <!-- Sliding content -->
    <LinearLayout
        android:id="@+id/dragView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:animateLayoutChanges="true"
        android:background="@android:color/white"
        android:clickable="true"
        android:focusable="false"
        android:orientation="vertical">

     <!-- content of sliding panel goes here -->

    </LinearLayout>

</com.sothree.slidinguppanel.SlidingUpPanelLayout>

如果您对Fragment感到疑惑,请点击此链接 -
How to do FragmentTransaction
Official guide

快乐的编码!