57 lines
2.1 KiB
XML
57 lines
2.1 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:theme="@style/Theme.Dantotsu.AppWidgetContainer">
|
|
|
|
<ImageView
|
|
android:id="@+id/backgroundView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/gradient_background" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/widgetContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="16dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/logoView"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:foregroundGravity="center_vertical"
|
|
android:src="@drawable/ic_dantotsu_round" />
|
|
|
|
<TextView
|
|
android:id="@+id/widgetTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginStart="0dp"
|
|
android:layout_toEndOf="@+id/logoView"
|
|
android:gravity="center_vertical"
|
|
android:text="Currently Airing"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
<ListView
|
|
android:id="@+id/widgetListView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/widgetTitle" />
|
|
|
|
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/empty_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="No shows to display"
|
|
android:textColor="#ffffff"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|