PlayerAndroid/app/src/main/res/layout-xlarge/fragment_blur.xml

82 lines
3.3 KiB
XML
Raw Normal View History

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"
2018-11-05 13:53:07 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
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:clickable="true"
android:focusable="true">
2018-08-01 06:51:27 +00:00
2018-11-05 13:53:07 +00:00
<androidx.appcompat.widget.AppCompatImageView
2018-12-04 15:34:26 +00:00
android:id="@+id/colorBackground"
2018-11-05 13:53:07 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop" />
2018-08-01 06:51:27 +00:00
2018-11-05 13:53:07 +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" />
2018-07-27 13:07:33 +00:00
2018-11-05 13:53:07 +00:00
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/shadow_up" />
2018-07-27 13:07:33 +00:00
2018-11-28 05:37:10 +00:00
<code.name.monkey.retromusic.views.FitSystemWindowsLayout
android:id="@+id/safeArea"
2018-11-05 13:53:07 +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-11-05 13:53:07 +00:00
android:layout_width="match_parent"
2018-11-28 05:37:10 +00:00
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:layout_marginStart="64dp"
android:layout_marginEnd="64dp"
android:orientation="vertical">
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">
2018-07-27 13:07:33 +00:00
2018-11-28 05:37:10 +00:00
<fragment
2018-12-08 03:34:15 +00:00
android:id="@+id/playerAlbumCoverFragment"
2018-11-28 05:37:10 +00:00
android:name="code.name.monkey.retromusic.ui.fragments.player.PlayerAlbumCoverFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
2018-11-05 13:53:07 +00:00
2018-11-28 05:37:10 +00:00
<FrameLayout
2018-11-05 13:53:07 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-11-28 05:37:10 +00:00
android:layout_weight="1"
tools:background="@color/md_white_1000">
2018-07-27 13:07:33 +00:00
2018-11-28 05:37:10 +00:00
<fragment
2018-12-08 03:34:15 +00:00
android:id="@+id/playbackControlsFragment"
2018-11-28 05:37:10 +00:00
android:name="code.name.monkey.retromusic.ui.fragments.player.blur.BlurPlaybackControlsFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_blur_playback_controls" />
</FrameLayout>
2018-11-13 03:30:08 +00:00
2018-11-28 05:37:10 +00:00
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
tools:background="@color/md_red_A700">
2018-07-27 13:07:33 +00:00
2018-11-28 05:37:10 +00:00
<androidx.appcompat.widget.Toolbar
2018-12-04 15:34:26 +00:00
android:id="@+id/playerToolbar"
style="@style/Toolbar"
2018-11-28 05:37:10 +00:00
android:layout_height="48dp"
android:navigationIcon="@drawable/ic_close_white_24dp"
app:navigationIcon="@drawable/ic_close_white_24dp" />
</FrameLayout>
</LinearLayout>
</code.name.monkey.retromusic.views.FitSystemWindowsLayout>
2018-07-27 13:07:33 +00:00
</FrameLayout>