diff options
author | Torsten Grote <t@grobox.de> | 2022-09-05 11:25:15 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2022-09-06 08:00:47 -0300 |
commit | 3d3108dd40cd8d3395434905463a91b4b3a71d5a (patch) | |
tree | ab2b721a93998a36880f59f957cecb7ff7e8f6c0 /wallet | |
parent | 5a0d67995d84a3945e4e3a84f22794a9c2e3f029 (diff) | |
download | taler-android-3d3108dd40cd8d3395434905463a91b4b3a71d5a.tar.gz taler-android-3d3108dd40cd8d3395434905463a91b4b3a71d5a.tar.bz2 taler-android-3d3108dd40cd8d3395434905463a91b4b3a71d5a.zip |
[wallet] Improve rendering of transaction list error message
Diffstat (limited to 'wallet')
-rw-r--r-- | wallet/src/main/res/layout/fragment_transactions.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wallet/src/main/res/layout/fragment_transactions.xml b/wallet/src/main/res/layout/fragment_transactions.xml index 60675bb..bad79ea 100644 --- a/wallet/src/main/res/layout/fragment_transactions.xml +++ b/wallet/src/main/res/layout/fragment_transactions.xml @@ -104,10 +104,13 @@ <TextView android:id="@+id/emptyState" - android:layout_width="wrap_content" + android:layout_width="0dp" android:layout_height="wrap_content" android:layout_gravity="center" + android:layout_margin="16dp" + android:gravity="center" android:text="@string/transactions_empty" + android:textSize="16sp" android:visibility="invisible" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" |