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"
|
2020-02-17 16:17:47 +00:00
|
|
|
android:background="?attr/colorSurface"
|
2018-07-27 13:07:33 +00:00
|
|
|
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"
|
2020-02-17 16:17:47 +00:00
|
|
|
android:background="?attr/colorSurface"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:srcCompat="@color/black_color" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/mask"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/md_black_1000"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/shadow_up_edited" />
|
|
|
|
|
|
|
|
<include layout="@layout/shadow_statusbar_toolbar" />
|
|
|
|
|
2019-09-02 14:51:53 +00:00
|
|
|
<LinearLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
</FrameLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:orientation="horizontal">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-09-02 14:51:53 +00:00
|
|
|
<code.name.monkey.retromusic.views.HeightFitSquareLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_horizontal">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2021-09-08 18:30:20 +00:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2019-09-02 14:51:53 +00:00
|
|
|
android:id="@+id/playerAlbumCoverFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-09 13:38:49 +00:00
|
|
|
tools:layout="@layout/fragment_album_cover" />
|
2019-09-02 14:51:53 +00:00
|
|
|
</code.name.monkey.retromusic.views.HeightFitSquareLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:orientation="vertical">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2021-09-08 18:30:20 +00:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2019-09-02 14:51:53 +00:00
|
|
|
android:id="@+id/playbackControlsFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.blur.BlurPlaybackControlsFragment"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:layout_weight="1" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2019-09-02 14:51:53 +00:00
|
|
|
<FrameLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-09-02 14:51:53 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-02-26 16:49:24 +00:00
|
|
|
android:layout_weight="0">
|
2019-09-02 14:51:53 +00:00
|
|
|
|
2019-09-29 08:37:57 +00:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2019-09-02 14:51:53 +00:00
|
|
|
android:id="@+id/playerToolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
android:layout_height="48dp"
|
2020-07-19 21:00:30 +00:00
|
|
|
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black"
|
|
|
|
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black" />
|
2019-09-02 14:51:53 +00:00
|
|
|
</FrameLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2019-09-02 14:51:53 +00:00
|
|
|
</LinearLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
</FrameLayout>
|