RetroMusicPlayer/app/src/main/res/layout-xlarge-land/fragment_blur.xml

130 lines
5.7 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2018-11-13 09:00:08 +05:30
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-30 14:59:30 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-08-30 14:59:30 +05:30
android:clickable="true"
android:focusable="true">
2018-07-27 18:37:33 +05:30
2018-08-30 14:59:30 +05:30
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/gradient_background"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-11-05 19:23:07 +05:30
android:scaleType="centerCrop" />
2018-08-01 12:21:27 +05:30
2018-08-30 14:59:30 +05:30
<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-08-01 12:21:27 +05:30
2018-08-30 14:59:30 +05:30
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/shadow_up" />
2018-07-27 18:37:33 +05:30
2018-11-13 09:00:08 +05:30
<code.name.monkey.retromusic.views.FitSystemWindowsLayout
android:id="@+id/safeArea"
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_height="match_parent">
2018-08-30 14:59:30 +05:30
2018-07-27 18:37:33 +05:30
2018-11-13 09:00:08 +05:30
<RelativeLayout
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_height="match_parent">
2018-08-30 14:59:30 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_above="@id/toolbar_container"
android:orientation="horizontal">
<FrameLayout
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_weight="1">
2018-08-30 14:59:30 +05:30
2018-11-13 09:00:08 +05:30
<LinearLayout
android:id="@+id/now_playing_container"
android:layout_width="400dp"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:orientation="vertical">
2018-08-30 14:59:30 +05:30
2018-11-13 09:00:08 +05:30
<code.name.monkey.retromusic.views.WidthFitSquareLayout
android:id="@+id/album_cover_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_weight="0">
<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="match_parent" />
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
tools:background="@color/md_white_1000">
<fragment
android:id="@+id/playback_controls_fragment"
android:name="code.name.monkey.retromusic.ui.fragments.player.blur.BlurPlaybackControlsFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
</LinearLayout>
</FrameLayout>
2018-08-30 14:59:30 +05:30
<LinearLayout
2018-11-13 09:00:08 +05:30
android:layout_width="match_parent"
2018-08-30 14:59:30 +05:30
android:layout_height="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical"
android:padding="24dp">
<TextView
android:id="@+id/title"
fontPath="@string/circular_std_black"
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
2018-11-13 09:00:08 +05:30
android:padding="12dp"
android:text="Queue"
android:textAppearance="@style/TextAppearance.AppCompat.Display2"
android:textColor="@color/md_white_1000"
tools:ignore="MissingPrefix" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_gravity="center_horizontal" />
2018-08-30 14:59:30 +05:30
</LinearLayout>
2018-11-13 09:00:08 +05:30
</LinearLayout>
<FrameLayout
android:id="@+id/toolbar_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
tools:background="@color/md_red_A700">
<androidx.appcompat.widget.Toolbar
android:id="@+id/player_toolbar"
style="@style/Toolbar48"
android:layout_height="48dp"
android:navigationIcon="@drawable/ic_close_white_24dp"
app:navigationIcon="@drawable/ic_close_white_24dp" />
2018-08-30 14:59:30 +05:30
</FrameLayout>
2018-11-13 09:00:08 +05:30
</RelativeLayout>
</code.name.monkey.retromusic.views.FitSystemWindowsLayout>
</FrameLayout>