habitica-android/Habitica/res/layout/widget_task_list.xml
Phillip Thelen b146895a52 Widget fixes
2021-11-29 17:03:17 +01:00

36 lines
No EOL
1.3 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="match_parent"
android:orientation="vertical"
android:theme="@style/MyWidgetTheme">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/widget_background"
android:padding="4dp"
android:textSize="18sp"
android:id="@+id/widget_title"
android:textColor="@color/text_primary"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="10dp"
android:paddingEnd="10dp">
<ListView
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/widget_background" />
</FrameLayout>
<TextView
android:id="@+id/emptyView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:textColor="@color/text_primary"
android:textSize="20sp"
android:visibility="gone"
android:text="@string/all_dailies_completed"/>
</LinearLayout>