
This includes shadowed variables, unnecessary parameters, layouts with string literals, items that cause performance bottlenecks, and the merge of extension types into only the necessary separate classes.
60 lines
2.2 KiB
XML
60 lines
2.2 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
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"
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
<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"
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
<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="@string/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
|
|
android:id="@+id/empty_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="@string/no_shows_to_display"
|
|
android:textColor="#ffffff"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|