2016-09-13 19:03:12 +00:00
|
|
|
<?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"
|
2021-11-29 16:03:17 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:theme="@style/MyWidgetTheme">
|
2016-09-22 11:07:06 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-20 09:43:44 +00:00
|
|
|
android:background="@drawable/widget_background"
|
2016-09-22 11:07:06 +00:00
|
|
|
android:padding="4dp"
|
|
|
|
|
android:textSize="18sp"
|
2016-11-19 18:13:39 +00:00
|
|
|
android:id="@+id/widget_title"
|
2021-07-27 09:27:43 +00:00
|
|
|
android:textColor="@color/text_primary"/>
|
2016-09-22 11:07:06 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2021-07-27 09:27:43 +00:00
|
|
|
android:paddingStart="10dp"
|
|
|
|
|
android:paddingEnd="10dp">
|
2016-09-13 19:03:12 +00:00
|
|
|
<ListView
|
|
|
|
|
android:id="@+id/list_view"
|
|
|
|
|
android:layout_width="match_parent"
|
2016-09-22 11:07:06 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@color/widget_background" />
|
|
|
|
|
</FrameLayout>
|
2016-09-13 19:03:12 +00:00
|
|
|
<TextView
|
2017-10-31 17:31:06 +00:00
|
|
|
android:id="@+id/emptyView"
|
2016-09-13 19:03:12 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:gravity="center"
|
2021-07-27 09:27:43 +00:00
|
|
|
android:textColor="@color/text_primary"
|
2016-09-13 19:03:12 +00:00
|
|
|
android:textSize="20sp"
|
2016-09-22 11:07:06 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
|
android:text="@string/all_dailies_completed"/>
|
2016-09-13 19:03:12 +00:00
|
|
|
|
|
|
|
|
</LinearLayout>
|