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"
|
2016-09-22 11:07:06 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@drawable/rounded_purple_square"
|
|
|
|
|
android:padding="4dp"
|
|
|
|
|
android:textSize="18sp"
|
2016-11-19 18:13:39 +00:00
|
|
|
android:id="@+id/widget_title"
|
2016-09-22 11:07:06 +00:00
|
|
|
android:textColor="@android:color/white"/>
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="4dp"
|
|
|
|
|
android:paddingEnd="4dp">
|
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"
|
|
|
|
|
android:textColor="#ffffff"
|
|
|
|
|
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>
|