我在我的第一个app(音乐播放器)屏幕上成功创建了Sliding up面板,我也有一个导航抽屉。现在问题是这个向上滑动面板仅在第一个屏幕上可用。我想要它用于我的所有屏幕(下载等)。我想要像Gaana和Google Play Music这样的应用程序。 我在创建向上滑动面板时提到了这个
请帮助,谢谢!
答案 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
快乐的编码!