2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/player_album_cover_fragment"
|
|
|
|
android:name="code.name.monkey.retromusic.ui.fragments.player.PlayerAlbumCoverFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-11-20 20:57:59 +05:30
|
|
|
tools:layout="@layout/fragment_album_full_cover" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:background="#50000000" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-23 22:00:46 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<LinearLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/playback_controls_fragment"
|
|
|
|
android:name="code.name.monkey.retromusic.ui.fragments.player.full.FullPlaybackControlsFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
tools:layout="@layout/fragment_full_player_controls" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/toolbar_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/player_toolbar"
|
|
|
|
style="@style/Toolbar48"
|
|
|
|
android:navigationIcon="@drawable/ic_close_white_24dp" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
2018-11-23 22:00:46 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</FrameLayout>
|