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

22 lines
1,023 B
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2020-05-12 04:30:22 +05:30
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 18:37:33 +05:30
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/padding_album_cover">
2018-07-27 18:37:33 +05:30
2020-05-12 04:30:22 +05:30
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/player_image"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="centerCrop"
2020-05-17 22:18:36 +05:30
app:layout_constraintBottom_toBottomOf="parent"
2020-05-12 04:30:22 +05:30
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="ContentDescription,UnusedAttribute"
tools:srcCompat="@tools:sample/backgrounds/scenic[6]" />
</androidx.constraintlayout.widget.ConstraintLayout>