90 lines
3.1 KiB
XML
90 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/card_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/event_card_background"
|
|
android:clipToOutline="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/card_watermark"
|
|
android:layout_width="150dp"
|
|
android:layout_height="150dp"
|
|
android:layout_gravity="end|top"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:alpha="0.16"
|
|
android:scaleType="fitCenter" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="bottom"
|
|
android:orientation="vertical"
|
|
android:padding="14dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/card_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/event_card_chip_primary"
|
|
android:paddingStart="10dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingEnd="10dp"
|
|
android:paddingBottom="4dp"
|
|
android:textColor="#102132"
|
|
android:textSize="11sp"
|
|
android:textStyle="bold" />
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<TextView
|
|
android:id="@+id/card_languages"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/event_card_chip_secondary"
|
|
android:paddingStart="10dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingEnd="10dp"
|
|
android:paddingBottom="4dp"
|
|
android:textColor="#F3F7FF"
|
|
android:textSize="10sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<TextView
|
|
android:id="@+id/card_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="2"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/card_providers"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="#C7D4EA"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|