From 508a12b8f7957dcf817fb2f29a6b924b22ebdc55 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Wed, 13 May 2020 10:03:04 -0300 Subject: [wallet] adapt fee parsing to wallet-core changes --- wallet/src/main/res/layout/fragment_select_exchange.xml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'wallet/src/main/res/layout/fragment_select_exchange.xml') 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" /> -- cgit v1.2.3