2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-11 22:24:09 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 13:07:33 +00:00
|
|
|
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-05-11 22:24:09 +00:00
|
|
|
android:background="?attr/colorSurface"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<View
|
2018-12-05 04:29:55 +00:00
|
|
|
android:id="@+id/colorGradientBackground"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-05-11 22:24:09 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<include layout="@layout/shadow_statusbar_toolbar" />
|
|
|
|
|
|
|
|
|
2020-05-11 22:24:09 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/statusBarContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-05-11 22:24:09 +00:00
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
</FrameLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
|
2020-05-11 22:24:09 +00:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/playerToolbar"
|
|
|
|
style="@style/Toolbar"
|
2020-07-19 21:00:30 +00:00
|
|
|
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black"
|
2020-05-11 22:24:09 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/statusBarContainer"
|
2020-07-19 21:00:30 +00:00
|
|
|
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
|
2021-09-16 12:59:31 +00:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2020-05-11 22:24:09 +00:00
|
|
|
android:id="@+id/playerAlbumCoverFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHeight_percent="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/playerToolbar"
|
|
|
|
tools:layout="@layout/fragment_album_flat_cover" />
|
2018-12-05 04:29:55 +00:00
|
|
|
|
2018-11-28 05:37:10 +00:00
|
|
|
|
2021-09-16 12:59:31 +00:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2020-05-11 22:24:09 +00:00
|
|
|
android:id="@+id/playbackControlsFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.flat.FlatPlaybackControlsFragment"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/playerAlbumCoverFragment"
|
|
|
|
tools:layout="@layout/fragment_flat_player_playback_controls" />
|
2018-11-28 05:37:10 +00:00
|
|
|
|
2020-05-11 22:24:09 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|