aboutsummaryrefslogtreecommitdiff
path: root/wallet/src/main/res/layout/payment_details.xml
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-01-03 14:58:53 -0600
committerIván Ávalos <avalos@disroot.org>2023-01-03 14:58:53 -0600
commit54ead5e35458b6bed19c5aeb2ce8e2fd9de9842e (patch)
treec2bb4af66095290cf399d42be8081ba04ddbdbf7 /wallet/src/main/res/layout/payment_details.xml
parentab77084575b76f9cbd517ff5817a2a5655133136 (diff)
downloadtaler-android-54ead5e35458b6bed19c5aeb2ce8e2fd9de9842e.tar.gz
taler-android-54ead5e35458b6bed19c5aeb2ce8e2fd9de9842e.tar.bz2
taler-android-54ead5e35458b6bed19c5aeb2ce8e2fd9de9842e.zip
[wallet] Layout improvements for payment promptbug-0007472
Diffstat (limited to 'wallet/src/main/res/layout/payment_details.xml')
-rw-r--r--wallet/src/main/res/layout/payment_details.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/wallet/src/main/res/layout/payment_details.xml b/wallet/src/main/res/layout/payment_details.xml
index 0610f52..ef33335 100644
--- a/wallet/src/main/res/layout/payment_details.xml
+++ b/wallet/src/main/res/layout/payment_details.xml
@@ -53,6 +53,7 @@
android:text="@string/payment_label_order_summary"
android:textAlignment="center"
android:visibility="invisible"
+ app:layout_constraintTop_toTopOf="@id/errorView"
app:layout_constraintBottom_toTopOf="@+id/orderView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
@@ -69,7 +70,6 @@
android:textAppearance="@style/TextAppearance.AppCompat.Headline"
android:textSize="25sp"
android:visibility="invisible"
- app:layout_constraintBottom_toTopOf="@+id/productsList"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/orderLabelView"
@@ -89,6 +89,18 @@
tools:listitem="@layout/list_item_product"
tools:visibility="visible" />
+ <TextView
+ android:id="@+id/singleItemLabelView"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textAlignment="center"
+ android:text="@string/payment_single_item"
+ android:visibility="invisible"
+ app:layout_constraintStart_toStartOf="@id/productsList"
+ app:layout_constraintEnd_toEndOf="@id/productsList"
+ app:layout_constraintTop_toTopOf="@id/productsList"
+ tools:visibility="invisible"/>
+
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"