2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-14 13:37:15 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-08 08:03:38 +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"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-01-06 05:34:09 +00:00
|
|
|
android:layout_margin="2dp"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:background="?rectSelector"
|
2020-05-14 13:37:15 +00:00
|
|
|
android:padding="4dp"
|
2018-08-08 08:03:38 +00:00
|
|
|
tools:ignore="MissingPrefix">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-05-14 13:37:15 +00:00
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
|
|
|
android:id="@+id/image"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:civ_border="false"
|
|
|
|
app:civ_shadow="false"
|
|
|
|
app:layout_constraintDimensionRatio="1:1"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:ignore="ContentDescription"
|
|
|
|
tools:src="@tools:sample/avatars" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-05-20 23:55:28 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2020-05-14 13:37:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-05-23 15:09:07 +00:00
|
|
|
android:gravity="center"
|
2020-05-20 23:55:28 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="12dp"
|
2020-05-14 13:37:15 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-05-20 23:55:28 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/image">
|
2018-08-08 08:03:38 +00:00
|
|
|
|
2020-05-20 23:55:28 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
</LinearLayout>
|
2018-08-08 08:03:38 +00:00
|
|
|
|
2020-05-14 13:37:15 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|