diff options
author | Torsten Grote <t@grobox.de> | 2020-05-14 15:38:36 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2020-05-15 14:26:43 -0300 |
commit | dfc0db1432b181723e20efc01d46335ffd53115d (patch) | |
tree | f58fd9c067467c138fadbdf59292188f5bc3282d /wallet/src/main/res | |
parent | 7f36a54e5781c56d538f007f5565d79e1a2285fc (diff) | |
download | taler-android-dfc0db1432b181723e20efc01d46335ffd53115d.tar.gz taler-android-dfc0db1432b181723e20efc01d46335ffd53115d.tar.bz2 taler-android-dfc0db1432b181723e20efc01d46335ffd53115d.zip |
[wallet] provide extra info in transactions when withdrawal requires confirmation
Diffstat (limited to 'wallet/src/main/res')
-rw-r--r-- | wallet/src/main/res/layout/list_item_transaction.xml | 43 | ||||
-rw-r--r-- | wallet/src/main/res/values/strings.xml | 1 |
2 files changed, 32 insertions, 12 deletions
diff --git a/wallet/src/main/res/layout/list_item_transaction.xml b/wallet/src/main/res/layout/list_item_transaction.xml index 058b170..a35ac30 100644 --- a/wallet/src/main/res/layout/list_item_transaction.xml +++ b/wallet/src/main/res/layout/list_item_transaction.xml @@ -44,20 +44,24 @@ android:layout_height="wrap_content" android:layout_marginStart="16dp" android:layout_marginEnd="8dp" - app:layout_constraintEnd_toStartOf="@+id/amount" + app:layout_constraintEnd_toStartOf="@+id/barrier" app:layout_constraintStart_toEndOf="@+id/icon" app:layout_constraintTop_toTopOf="parent" tools:text="@string/transaction_payment" /> <TextView - android:id="@+id/amount" - android:layout_width="wrap_content" + android:id="@+id/extraInfoView" + android:layout_width="0dp" android:layout_height="wrap_content" - android:textSize="24sp" - app:layout_constraintBottom_toTopOf="@+id/pendingView" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintTop_toTopOf="parent" - tools:text="- 1337.23" /> + android:layout_marginTop="8dp" + android:layout_marginEnd="8dp" + android:textSize="14sp" + android:visibility="gone" + app:layout_constraintEnd_toStartOf="@+id/barrier" + app:layout_constraintStart_toStartOf="@+id/title" + app:layout_constraintTop_toBottomOf="@+id/title" + tools:text="@string/withdraw_waiting_confirm" + tools:visibility="visible" /> <TextView android:id="@+id/time" @@ -67,11 +71,28 @@ android:layout_marginEnd="8dp" android:textSize="14sp" app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintEnd_toStartOf="@+id/amount" + app:layout_constraintEnd_toStartOf="@+id/barrier" app:layout_constraintStart_toStartOf="@+id/title" - app:layout_constraintTop_toBottomOf="@+id/title" + app:layout_constraintTop_toBottomOf="@+id/extraInfoView" tools:text="23 min ago" /> + <androidx.constraintlayout.widget.Barrier + android:id="@+id/barrier" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + app:barrierDirection="start" + app:constraint_referenced_ids="amount,pendingView" /> + + <TextView + android:id="@+id/amount" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="24sp" + app:layout_constraintBottom_toTopOf="@+id/pendingView" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintTop_toTopOf="parent" + tools:text="- 1337.23" /> + <TextView android:id="@+id/pendingView" android:layout_width="wrap_content" @@ -81,8 +102,6 @@ android:visibility="gone" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintHorizontal_bias="1.0" - app:layout_constraintStart_toEndOf="@+id/time" app:layout_constraintTop_toBottomOf="@+id/amount" tools:visibility="visible" /> diff --git a/wallet/src/main/res/values/strings.xml b/wallet/src/main/res/values/strings.xml index 1f2d80c..e408365 100644 --- a/wallet/src/main/res/values/strings.xml +++ b/wallet/src/main/res/values/strings.xml @@ -114,6 +114,7 @@ GNU Taler is immune against many types of fraud, such as phishing of credit card <string name="withdraw_button_confirm">Confirm Withdraw</string> <string name="withdraw_button_confirm_bank">Confirm with bank</string> <string name="withdraw_button_tos">Review Terms</string> + <string name="withdraw_waiting_confirm">Waiting for confirmation</string> <string name="withdraw_error_title">Withdrawal Error</string> <string name="withdraw_error_message">Withdrawing is currently not possible. Please try again later!</string> |