PlayerAndroid/app/src/main/res/layout/sliding_music_panel_layout.xml

56 lines
2.0 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-08-22 17:54:07 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-07-27 13:07:33 +00:00
xmlns:sothree="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2018-08-22 17:54:07 +00:00
android:layout_height="match_parent"
android:orientation="vertical">
2018-07-27 13:07:33 +00:00
2018-08-22 17:54:07 +00:00
<com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:sothree="http://schemas.android.com/apk/res-auto"
2018-07-27 13:07:33 +00:00
android:id="@+id/sliding_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-08-22 17:54:07 +00:00
android:layout_weight="1"
2018-07-27 13:07:33 +00:00
android:gravity="bottom"
2018-08-22 17:54:07 +00:00
sothree:umanoOverlay="false"
2018-07-27 13:07:33 +00:00
sothree:umanoPanelHeight="0dp"
sothree:umanoScrollableView="@+id/recycler_view"
2018-08-22 17:54:07 +00:00
sothree:umanoShadowHeight="0dp">
2018-07-27 13:07:33 +00:00
<FrameLayout
android:id="@+id/content_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:id="@+id/sliding_panel"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/player_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<fragment
android:id="@+id/mini_player_fragment"
android:name="code.name.monkey.retromusic.ui.fragments.MiniPlayerFragment"
android:layout_width="match_parent"
android:layout_height="48dp"
tools:layout="@layout/fragment_mini_player" />
</FrameLayout>
</com.sothree.slidinguppanel.SlidingUpPanelLayout>
2018-08-22 17:54:07 +00:00
<fragment
android:id="@+id/castMiniController"
class="com.google.android.gms.cast.framework.media.widget.MiniControllerFragment"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-22 17:54:07 +00:00
android:layout_height="wrap_content"
android:layout_weight="0"
tools:visibility="visible" />
</LinearLayout>