mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
36 lines
No EOL
1.3 KiB
XML
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> |