summaryrefslogtreecommitdiff
path: root/wallet/src/main/res/layout
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2024-01-15 18:32:11 -0600
committerTorsten Grote <t@grobox.de>2024-02-09 14:41:31 -0300
commit8b5a283a471bafbf19f36a0051e8a40c9dcf844e (patch)
tree1d81e28a3eed0ef531cfcf14e3f994e736ac1a76 /wallet/src/main/res/layout
parent512e79eaf07eadd24914eb4a41b52c824866c528 (diff)
downloadtaler-android-8b5a283a471bafbf19f36a0051e8a40c9dcf844e.tar.gz
taler-android-8b5a283a471bafbf19f36a0051e8a40c9dcf844e.tar.bz2
taler-android-8b5a283a471bafbf19f36a0051e8a40c9dcf844e.zip
[wallet] DD35: show scope info in balance list
Diffstat (limited to 'wallet/src/main/res/layout')
-rw-r--r--wallet/src/main/res/layout/list_item_balance.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/wallet/src/main/res/layout/list_item_balance.xml b/wallet/src/main/res/layout/list_item_balance.xml
index 475e7d6..82e663f 100644
--- a/wallet/src/main/res/layout/list_item_balance.xml
+++ b/wallet/src/main/res/layout/list_item_balance.xml
@@ -49,6 +49,19 @@
tools:text="TESTKUDOS" />
<TextView
+ android:id="@+id/scopeView"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="8dp"
+ android:visibility="gone"
+ app:layout_constraintTop_toBottomOf="@id/balanceAmountView"
+ app:layout_constraintBottom_toTopOf="@id/balanceInboundAmount"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintEnd_toStartOf="@id/pendingView"
+ tools:text="@string/balance_scope_exchange"
+ tools:visibility="visible"/>
+
+ <TextView
android:id="@+id/balanceInboundAmount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -59,7 +72,7 @@
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/balanceAmountView"
+ app:layout_constraintTop_toBottomOf="@+id/scopeView"
tools:text="+10 TESTKUDOS"
tools:visibility="visible" />