67 lines
2.3 KiB
XML
67 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="80dp"
|
||
|
|
android:background="@drawable/player_preroll_card_background"
|
||
|
|
android:clipToOutline="true"
|
||
|
|
android:outlineProvider="background">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/player_preroll_card_artwork"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:contentDescription="@null"
|
||
|
|
android:scaleType="centerCrop" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@drawable/player_preroll_card_scrim" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingStart="10dp"
|
||
|
|
android:paddingTop="8dp"
|
||
|
|
android:paddingEnd="9dp"
|
||
|
|
android:paddingBottom="8dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/player_preroll_card_label"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textAllCaps="true"
|
||
|
|
android:textColor="#FF64C85A"
|
||
|
|
android:textSize="8sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/player_preroll_card_title"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="3dp"
|
||
|
|
android:ellipsize="end"
|
||
|
|
android:maxLines="1"
|
||
|
|
android:textColor="#FFFFFFFF"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/player_preroll_card_detail"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="2dp"
|
||
|
|
android:ellipsize="end"
|
||
|
|
android:maxLines="1"
|
||
|
|
android:textColor="#FFD0D6DB"
|
||
|
|
android:textSize="9sp" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@drawable/player_preroll_card_frame" />
|
||
|
|
</FrameLayout>
|