Empty screen if no upload fix (#1940)

* Updated contribution screen to show message for no uploads by default, message gets wiped after any picture is inserted into the list

* Changed string as suggested

* Added margin
This commit is contained in:
Rulino 2018-10-20 17:00:02 +02:00 committed by Vivek Maskara
parent 6bee91496e
commit 2af57fc594
4 changed files with 24 additions and 0 deletions

View file

@ -7,6 +7,18 @@
android:background="?attr/mainBackground"
>
<TextView
android:id="@+id/noDataYet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/no_uploads"
android:gravity="center"
android:layout_centerInParent="true"
android:visibility="gone"
android:layout_marginRight="@dimen/tiny_gap"
android:layout_marginEnd="@dimen/tiny_gap"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"