Files
Dantotsu/app/src/main/res/layout/item_currently_airing_widget.xml
2024-02-06 02:16:10 -06:00

43 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="8dp">
<ImageView
android:id="@+id/image_show_icon"
android:layout_width="48dp"
android:layout_height="48dp"
android:contentDescription="@string/airing_image"
android:src="@drawable/ic_launcher_foreground" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/text_show_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/poppins_bold"
android:text="Placeholder Title"
android:textColor="@color/bg_white"
android:textSize="16sp" />
<TextView
android:id="@+id/text_show_countdown"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/poppins"
android:text="Placeholder Countdown"
android:textColor="@color/grey_60"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>