PlayerAndroid/app/src/main/res/layout-xlarge-land/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"?>
2019-03-03 09:20:15 +00:00
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-30 09:29:30 +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"
2020-02-17 16:17:47 +00:00
android:background="?attr/colorSurface"
2018-08-30 09:29:30 +00:00
android:clickable="true"
android:focusable="true">
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatImageView
2018-12-04 15:34:26 +00:00
android:id="@+id/colorBackground"
2018-08-30 09:29:30 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-02-17 16:17:47 +00:00
android:background="?attr/colorSurface"
android:scaleType="centerCrop"
app:srcCompat="@color/black_color" />
2018-08-01 06:51:27 +00:00
2018-08-30 09:29:30 +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
2020-10-08 19:44:10 +00:00
<FrameLayout
android:id="@+id/statusBarContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-03-03 09:20:15 +00:00
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
2020-10-08 19:44:10 +00:00
<include layout="@layout/status_bar" />
</FrameLayout>
2018-08-30 09:29:30 +00:00
2020-10-08 19:44:10 +00:00
<FrameLayout
android:id="@+id/albumCoverContainer"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_gravity="center_horizontal"
android:layout_weight="0"
app:layout_constraintBottom_toTopOf="@id/playerContent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/statusBarContainer">
2018-11-13 03:30:08 +00:00
<androidx.fragment.app.FragmentContainerView
2020-10-08 19:44:10 +00:00
android:id="@+id/playerAlbumCoverFragment"
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
2019-03-03 09:20:15 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-10-08 19:44:10 +00:00
tools:layout="@layout/fragment_album_cover" />
</FrameLayout>
2018-11-28 05:37:10 +00:00
2020-10-08 19:44:10 +00:00
<FrameLayout
android:id="@+id/playerContent"
android:layout_width="400dp"
android:layout_height="0dp"
android:layout_above="@id/playerToolbar"
app:layout_constraintBottom_toTopOf="@+id/playerToolbar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/albumCoverContainer">
<androidx.fragment.app.FragmentContainerView
2020-10-08 19:44:10 +00:00
android:id="@+id/playbackControlsFragment"
android:name="code.name.monkey.retromusic.fragments.player.blur.BlurPlaybackControlsFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
2019-03-03 09:20:15 +00:00
2019-09-29 08:37:57 +00:00
<com.google.android.material.appbar.MaterialToolbar
2019-03-03 09:20:15 +00:00
android:id="@+id/playerToolbar"
style="@style/Toolbar"
android:layout_height="48dp"
2020-07-19 21:00:30 +00:00
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black"
2019-03-03 09:20:15 +00:00
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
2020-07-19 21:00:30 +00:00
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black" />
2019-03-03 09:20:15 +00:00
</androidx.constraintlayout.widget.ConstraintLayout>