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

39 lines
1.5 KiB
XML
Raw Normal View History

2018-11-20 20:57:59 +05:30
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="wrap_content"
android:layout_height="wrap_content"
2020-01-06 11:04:09 +05:30
android:background="?attr/rectSelector"
2018-11-20 20:57:59 +05:30
android:orientation="vertical">
<com.google.android.material.card.MaterialCardView
android:layout_width="112dp"
android:layout_height="156dp"
2020-01-28 22:30:28 +05:30
android:layout_margin="4dp"
2018-11-20 20:57:59 +05:30
app:cardCornerRadius="8dp"
2020-01-28 22:30:28 +05:30
app:cardElevation="4dp">
2018-11-20 20:57:59 +05:30
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-10-26 19:44:09 +05:30
android:scaleType="centerCrop"
tools:src="@tools:sample/avatars" />
2018-11-20 20:57:59 +05:30
</com.google.android.material.card.MaterialCardView>
2019-09-28 23:22:49 +05:30
<com.google.android.material.textview.MaterialTextView
2018-11-20 20:57:59 +05:30
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:ellipsize="end"
2019-12-26 20:55:41 +05:30
android:maxLines="2"
2020-01-03 18:10:42 +05:30
android:paddingStart="12dp"
2020-01-06 11:04:09 +05:30
android:paddingEnd="8dp"
android:paddingBottom="4dp"
android:textAppearance="@style/TextViewNormal"
2020-01-06 08:42:32 +05:30
android:textColor="?android:attr/textColorPrimary"
2020-01-06 11:04:09 +05:30
tools:ignore="MissingPrefix"
2020-01-03 18:10:42 +05:30
tools:text="@tools:sample/full_names" />
2018-11-20 20:57:59 +05:30
</LinearLayout>