diff options
author | jacquarg <guillaume.jacquart@hoodbrains.com> | 2022-03-28 09:11:01 +0200 |
---|---|---|
committer | jacquarg <guillaume.jacquart@hoodbrains.com> | 2022-03-29 08:23:53 +0200 |
commit | 138cd2710919db4b5db55797dbdff5f4ebef3846 (patch) | |
tree | daa95590e167c520fb9be159225a435446827bdc /app/src/main/res/layout/widget.xml | |
parent | 668632620bc9552d89e333efa47023ebff515ce9 (diff) |
5161 display message when trackers graphs empty.
Diffstat (limited to 'app/src/main/res/layout/widget.xml')
-rw-r--r-- | app/src/main/res/layout/widget.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/src/main/res/layout/widget.xml b/app/src/main/res/layout/widget.xml index 612221a..6930429 100644 --- a/app/src/main/res/layout/widget.xml +++ b/app/src/main/res/layout/widget.xml @@ -171,6 +171,7 @@ <LinearLayout + android:id="@+id/graph" android:layout_width="match_parent" android:layout_marginTop="16dp" android:layout_marginHorizontal="24dp" @@ -388,4 +389,15 @@ android:layout_marginBottom="24dp" /> + <TextView + android:id="@+id/graph_empty" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_margin="24dp" + android:text="@string/graph_empty_message" + android:textColor="@color/on_primary_disabled" + android:visibility="gone" + android:gravity="center" + /> + </LinearLayout>
\ No newline at end of file |