RetroMusicPlayer/app/src/main/res/layout/fragment_album_material_cover.xml

28 lines
1.2 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2020-05-11 15:57:12 +05:30
<androidx.constraintlayout.widget.ConstraintLayout 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"
2020-05-11 15:57:12 +05:30
android:layout_height="match_parent">
2018-07-27 18:37:33 +05:30
2018-11-05 19:23:07 +05:30
<com.google.android.material.card.MaterialCardView
2018-07-27 18:37:33 +05:30
android:id="@+id/player_album_art_frame"
2020-05-11 15:57:12 +05:30
android:layout_width="0dp"
android:layout_height="0dp"
2018-07-27 18:37:33 +05:30
android:layout_margin="16dp"
2020-05-11 15:57:12 +05:30
app:cardCornerRadius="8dp"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
2018-07-27 18:37:33 +05:30
2020-05-11 15:57:12 +05:30
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/player_image"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2020-05-11 15:57:12 +05:30
android:layout_height="match_parent"
android:scaleType="centerCrop"
tools:ignore="ContentDescription,UnusedAttribute"
tools:srcCompat="@tools:sample/backgrounds/scenic[8]" />
2018-07-27 18:37:33 +05:30
2018-11-05 19:23:07 +05:30
</com.google.android.material.card.MaterialCardView>
2020-05-11 15:57:12 +05:30
</androidx.constraintlayout.widget.ConstraintLayout>