67 lines
2.7 KiB
XML
67 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="2dp"
|
|
android:background="?rectSelector"
|
|
tools:ignore="MissingPrefix">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
tools:ignore="UnusedAttribute,UselessParent">
|
|
|
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout
|
|
android:id="@+id/imageContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="4dp">
|
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
app:civ_border="false"
|
|
app:civ_shadow="false"
|
|
tools:ignore="ContentDescription"
|
|
tools:src="@tools:sample/avatars" />
|
|
|
|
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingStart="4dp"
|
|
android:paddingTop="8dp"
|
|
android:paddingEnd="4dp"
|
|
android:paddingBottom="8dp">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:maxLines="2"
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textStyle="bold"
|
|
tools:text="@tools:sample/lorem/random" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="2dp"
|
|
android:singleLine="true"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
tools:text="@tools:sample/lorem" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</FrameLayout>
|