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

49 lines
1.8 KiB
XML
Raw Normal View History

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