mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-02 18:31:40 +00:00
40 lines
No EOL
1.5 KiB
XML
40 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingEnd="8dp">
|
|
|
|
<androidx.cardview.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
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_page_album_cover_image_view"
|
|
android:layout_width="256dp"
|
|
android:layout_height="256dp" />
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<TextView
|
|
android:id="@+id/album_name_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:maxWidth="256dp"
|
|
android:maxLines="2"
|
|
android:paddingStart="2dp"
|
|
android:paddingTop="8dp"
|
|
android:singleLine="false"
|
|
android:textColor="@color/titleTextColor"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout> |