habitica-android/Habitica/res/layout/widget_dailies.xml

35 lines
1.3 KiB
XML
Raw Normal View History

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:text="@string/dailies"
android:background="@drawable/rounded_purple_square"
android:padding="4dp"
android:textSize="18sp"
android:textColor="@android:color/white"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="4dp"
android:paddingRight="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
android:id="@+id/empty_view"
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>