2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-22 23:24:07 +05:30
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 18:37:33 +05:30
|
|
|
xmlns:sothree="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2018-08-22 23:24:07 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-22 23:24:07 +05:30
|
|
|
<com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:sothree="http://schemas.android.com/apk/res-auto"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/sliding_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-08-22 23:24:07 +05:30
|
|
|
android:layout_weight="1"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:gravity="bottom"
|
2018-08-22 23:24:07 +05:30
|
|
|
sothree:umanoOverlay="false"
|
2018-07-27 18:37:33 +05:30
|
|
|
sothree:umanoPanelHeight="0dp"
|
|
|
|
sothree:umanoScrollableView="@+id/recycler_view"
|
2018-08-22 23:24:07 +05:30
|
|
|
sothree:umanoShadowHeight="0dp">
|
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<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 23:24:07 +05:30
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/castMiniController"
|
|
|
|
class="com.google.android.gms.cast.framework.media.widget.MiniControllerFragment"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-22 23:24:07 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</LinearLayout>
|