summaryrefslogtreecommitdiff
path: root/wallet/src/main/res
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-05-13 10:03:04 -0300
committerTorsten Grote <t@grobox.de>2020-05-13 10:03:04 -0300
commit508a12b8f7957dcf817fb2f29a6b924b22ebdc55 (patch)
tree504f261474f78c904de25748facd8a0e5b52e0ab /wallet/src/main/res
parent688b7a2a8169f4f587f6f8373ed26228e88a9727 (diff)
downloadtaler-android-508a12b8f7957dcf817fb2f29a6b924b22ebdc55.tar.gz
taler-android-508a12b8f7957dcf817fb2f29a6b924b22ebdc55.tar.bz2
taler-android-508a12b8f7957dcf817fb2f29a6b924b22ebdc55.zip
[wallet] adapt fee parsing to wallet-core changes
Diffstat (limited to 'wallet/src/main/res')
-rw-r--r--wallet/src/main/res/layout/fragment_select_exchange.xml15
1 files changed, 10 insertions, 5 deletions
diff --git a/wallet/src/main/res/layout/fragment_select_exchange.xml b/wallet/src/main/res/layout/fragment_select_exchange.xml
index cb8d35a..6f8814f 100644
--- a/wallet/src/main/res/layout/fragment_select_exchange.xml
+++ b/wallet/src/main/res/layout/fragment_select_exchange.xml
@@ -80,7 +80,8 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
- app:layout_constraintEnd_toEndOf="@+id/withdrawFeeView"
+ android:layout_marginEnd="16dp"
+ app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/expirationLabel"
app:layout_constraintTop_toTopOf="@+id/expirationLabel"
tools:text="in 5 years" />
@@ -100,11 +101,13 @@
android:id="@+id/coinFeesList"
android:layout_width="0dp"
android:layout_height="wrap_content"
+ android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
+ android:layout_marginEnd="16dp"
android:overScrollMode="never"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- app:layout_constraintEnd_toEndOf="@+id/withdrawFeeView"
- app:layout_constraintStart_toStartOf="@+id/withdrawFeeLabel"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/coinFeesLabel"
tools:listitem="@layout/list_item_coin_fee" />
@@ -123,11 +126,13 @@
android:id="@+id/wireFeesList"
android:layout_width="0dp"
android:layout_height="wrap_content"
+ android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
+ android:layout_marginEnd="16dp"
android:overScrollMode="never"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- app:layout_constraintEnd_toEndOf="@+id/withdrawFeeView"
- app:layout_constraintStart_toStartOf="@+id/withdrawFeeLabel"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/wireFeesLabel"
tools:listitem="@layout/list_item_wire_fee" />