2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-11 23:00:22 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 13:07:33 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2021-11-12 11:34:33 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:padding="@dimen/padding_album_cover">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-05-11 23:00:22 +00:00
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
|
|
|
android:id="@+id/player_image"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:civ_border="false"
|
|
|
|
app:civ_shadow="false"
|
2020-05-17 16:48:36 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-05-11 23:00:22 +00:00
|
|
|
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[4]" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-05-11 23:00:22 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|