2020-11-20 15:38:08 +01:00
|
|
|
<?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"
|
2021-04-18 09:52:36 +02:00
|
|
|
android:paddingEnd="8dp"
|
|
|
|
|
android:paddingBottom="4dp">
|
2020-11-20 15:38:08 +01:00
|
|
|
|
2021-04-27 11:05:58 +02:00
|
|
|
<androidx.cardview.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:id="@+id/card_view"
|
2020-11-21 18:41:35 +01:00
|
|
|
android:layout_width="196dp"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_height="54dp"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:backgroundTint="@color/cardColor"
|
|
|
|
|
card_view:cardCornerRadius="4dp"
|
|
|
|
|
card_view:cardElevation="2dp"
|
|
|
|
|
card_view:cardPreventCornerOverlap="false"
|
|
|
|
|
card_view:cardUseCompatPadding="true">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="6dp"
|
|
|
|
|
android:layout_height="match_parent"
|
2021-04-27 11:05:58 +02:00
|
|
|
android:background="@color/colorAccent" />
|
2020-11-20 15:38:08 +01:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/genre_label"
|
2021-04-27 11:05:58 +02:00
|
|
|
style="@style/ItemTitleTextView"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="match_parent"
|
2021-04-20 11:53:51 +02:00
|
|
|
android:gravity="center_vertical"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:paddingStart="8dp"
|
|
|
|
|
android:text="@string/label_placeholder"
|
2021-04-27 11:05:58 +02:00
|
|
|
android:textAlignment="gravity" />
|
2020-11-20 15:38:08 +01:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
</LinearLayout>
|