2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-03-03 14:50:15 +05:30
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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
|
2018-12-04 21:04:26 +05:30
|
|
|
android:id="@+id/colorBackground"
|
2018-08-30 14:59:30 +05:30
|
|
|
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
|
|
|
|
|
|
|
|
2019-03-03 14:50:15 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/playerContent"
|
|
|
|
android:layout_width="400dp"
|
|
|
|
android:layout_height="0dp"
|
2019-09-02 20:21:53 +05:30
|
|
|
android:layout_above="@id/playerToolbar"
|
2019-03-03 14:50:15 +05:30
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/playerToolbar"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout
|
|
|
|
android:id="@+id/album_cover_container"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-03-03 14:50:15 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_weight="0">
|
2018-08-30 14:59:30 +05:30
|
|
|
|
2019-03-03 14:50:15 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/playerAlbumCoverFragment"
|
2019-04-20 10:59:45 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-03-03 14:50:15 +05:30
|
|
|
android:layout_height="match_parent" />
|
|
|
|
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
|
2018-11-13 09:00:08 +05:30
|
|
|
|
2019-03-03 14:50:15 +05:30
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
tools:background="@color/md_white_1000">
|
2018-11-28 11:07:10 +05:30
|
|
|
|
2019-03-03 14:50:15 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/playbackControlsFragment"
|
2019-04-20 10:59:45 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.blur.BlurPlaybackControlsFragment"
|
2018-11-13 09:00:08 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-03-03 14:50:15 +05:30
|
|
|
android:layout_height="match_parent" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2019-09-02 20:21:53 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEToolbar
|
2019-03-03 14:50:15 +05:30
|
|
|
android:id="@+id/playerToolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
android:layout_height="48dp"
|
2019-06-23 22:37:33 +05:30
|
|
|
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp"
|
2019-03-03 14:50:15 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-06-23 22:37:33 +05:30
|
|
|
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp" />
|
2019-03-03 14:50:15 +05:30
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|