2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2018-12-04 15:34:26 +00:00
|
|
|
android:id="@+id/colorBackground"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:scaleType="centerCrop" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/shadow_up_strong" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/mask"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2018-11-28 05:37:10 +00:00
|
|
|
<code.name.monkey.retromusic.views.FitSystemWindowsLayout
|
|
|
|
android:id="@+id/safeArea"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-28 05:37:10 +00:00
|
|
|
android:layout_height="match_parent">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-11-28 05:37:10 +00:00
|
|
|
<LinearLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-28 05:37:10 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-11-28 05:37:10 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-11-28 05:37:10 +00:00
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
</FrameLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
|
2018-11-28 05:37:10 +00:00
|
|
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-28 05:37:10 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal">
|
|
|
|
|
|
|
|
<fragment
|
2018-12-12 21:02:14 +00:00
|
|
|
android:id="@+id/playerAlbumCoverFragment"
|
2019-04-20 05:29:45 +00:00
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
|
2018-11-28 05:37:10 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
tools:background="@color/md_white_1000">
|
|
|
|
|
|
|
|
<fragment
|
2018-12-12 21:02:14 +00:00
|
|
|
android:id="@+id/playbackControlsFragment"
|
2019-04-20 05:29:45 +00:00
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.blur.BlurPlaybackControlsFragment"
|
2018-11-28 05:37:10 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
</FrameLayout>
|
2018-12-04 15:34:26 +00:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/playerToolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
android:layout_height="48dp"
|
2019-06-23 17:07:33 +00:00
|
|
|
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp"
|
|
|
|
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp" />
|
2018-12-04 15:34:26 +00:00
|
|
|
</FrameLayout>
|
2018-11-28 05:37:10 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</code.name.monkey.retromusic.views.FitSystemWindowsLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
</FrameLayout>
|