2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-01-14 17:47:22 +05:30
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 18:37:33 +05:30
|
|
|
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">
|
|
|
|
|
|
|
|
<View
|
2018-12-05 09:59:55 +05:30
|
|
|
android:id="@+id/colorGradientBackground"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2018-12-08 09:04:15 +05:30
|
|
|
<com.jetradarmobile.snowfall.SnowfallView
|
|
|
|
android:id="@+id/snowfall"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
<include layout="@layout/shadow_statusbar_toolbar" />
|
|
|
|
|
2019-02-26 22:45:48 +05:30
|
|
|
<code.name.monkey.retromusic.views.StatusBarMarginFrameLayout
|
2018-11-28 11:07:10 +05:30
|
|
|
android:id="@+id/safeArea"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-28 11:07:10 +05:30
|
|
|
android:layout_height="match_parent">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-28 11:07:10 +05:30
|
|
|
<LinearLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-28 11:07:10 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-02-26 22:18:11 +05:30
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/playerAlbumCoverContainer"
|
2018-11-28 11:07:10 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-02-26 22:18:11 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0">
|
2018-11-28 11:07:10 +05:30
|
|
|
|
|
|
|
<fragment
|
2018-12-05 09:59:55 +05:30
|
|
|
android:id="@+id/playerAlbumCoverFragment"
|
2018-11-28 11:07:10 +05:30
|
|
|
android:name="code.name.monkey.retromusic.ui.fragments.player.PlayerAlbumCoverFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:layout="@layout/fragment_album_cover" />
|
2019-02-26 22:18:11 +05:30
|
|
|
</FrameLayout>
|
2018-11-28 11:07:10 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-02-26 22:18:11 +05:30
|
|
|
android:layout_height="wrap_content"
|
2018-11-28 11:07:10 +05:30
|
|
|
android:layout_weight="1">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-28 11:07:10 +05:30
|
|
|
<fragment
|
2018-12-05 09:59:55 +05:30
|
|
|
android:id="@+id/playbackControlsFragment"
|
2018-11-28 11:07:10 +05:30
|
|
|
android:name="code.name.monkey.retromusic.ui.fragments.player.normal.PlayerPlaybackControlsFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:layout="@layout/fragment_player_playback_controls" />
|
|
|
|
</FrameLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-28 11:07:10 +05:30
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-28 11:07:10 +05:30
|
|
|
<androidx.appcompat.widget.Toolbar
|
2018-12-05 09:59:55 +05:30
|
|
|
android:id="@+id/playerToolbar"
|
2018-12-04 21:04:26 +05:30
|
|
|
style="@style/Toolbar"
|
2018-11-28 11:07:10 +05:30
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:navigationIcon="@drawable/ic_close_white_24dp"
|
|
|
|
app:navigationIcon="@drawable/ic_close_white_24dp" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
2019-02-26 22:45:48 +05:30
|
|
|
</code.name.monkey.retromusic.views.StatusBarMarginFrameLayout>
|
2019-01-14 17:47:22 +05:30
|
|
|
</FrameLayout>
|