mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-02 10:23:33 +00:00
42 lines
No EOL
1.5 KiB
XML
42 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="180dp"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingEnd="8dp">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/card_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:backgroundTint="@color/cardColor"
|
|
card_view:cardCornerRadius="4dp"
|
|
card_view:cardElevation="2dp"
|
|
card_view:cardPreventCornerOverlap="false"
|
|
card_view:cardUseCompatPadding="true"
|
|
android:foreground="?attr/selectableItemBackground">
|
|
|
|
<ImageView
|
|
android:id="@+id/artist_cover_image_view"
|
|
android:layout_width="172dp"
|
|
android:layout_height="172dp" />
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<TextView
|
|
android:id="@+id/artist_name_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:maxWidth="172dp"
|
|
android:maxLines="1"
|
|
android:paddingStart="2dp"
|
|
android:paddingTop="8dp"
|
|
android:singleLine="false"
|
|
android:textColor="@color/titleTextColor"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout> |