taler-android

Android apps for GNU Taler (wallet, PoS, cashier)
Log | Files | Refs | README | LICENSE

commit 3d3108dd40cd8d3395434905463a91b4b3a71d5a
parent 5a0d67995d84a3945e4e3a84f22794a9c2e3f029
Author: Torsten Grote <t@grobox.de>
Date:   Mon,  5 Sep 2022 11:25:15 -0300

[wallet] Improve rendering of transaction list error message

Diffstat:
Mwallet/src/main/res/layout/fragment_transactions.xml | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 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"