summaryrefslogtreecommitdiff
path: root/merchant-terminal/src/main/res/layout/list_item_product.xml
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-04-01 15:04:52 -0300
committerTorsten Grote <t@grobox.de>2020-04-01 15:04:52 -0300
commitb2bec204e214e6b077c4c1901d07fabec27104e9 (patch)
tree2de3205d201011b47fe8241a164bb3bc6c6c468b /merchant-terminal/src/main/res/layout/list_item_product.xml
parentaa6dad91b20edd0a304423d1edc267cf4e8b5dbe (diff)
downloadtaler-android-b2bec204e214e6b077c4c1901d07fabec27104e9.tar.gz
taler-android-b2bec204e214e6b077c4c1901d07fabec27104e9.tar.bz2
taler-android-b2bec204e214e6b077c4c1901d07fabec27104e9.zip
[pos] automatic code cleanup
Diffstat (limited to 'merchant-terminal/src/main/res/layout/list_item_product.xml')
-rw-r--r--merchant-terminal/src/main/res/layout/list_item_product.xml59
1 files changed, 29 insertions, 30 deletions
diff --git a/merchant-terminal/src/main/res/layout/list_item_product.xml b/merchant-terminal/src/main/res/layout/list_item_product.xml
index 1037bef..6ef3611 100644
--- a/merchant-terminal/src/main/res/layout/list_item_product.xml
+++ b/merchant-terminal/src/main/res/layout/list_item_product.xml
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
+<?xml version="1.0" encoding="utf-8"?><!--
~ This file is part of GNU Taler
~ (C) 2020 Taler Systems S.A.
~
@@ -16,40 +15,40 @@
-->
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="4dp"
- android:clickable="true"
- android:focusable="true"
- app:cardUseCompatPadding="true">
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="4dp"
+ android:clickable="true"
+ android:focusable="true"
+ app:cardUseCompatPadding="true">
<androidx.constraintlayout.widget.ConstraintLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="8dp">
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="8dp">
<TextView
- android:id="@+id/name"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:textColor="?android:textColorPrimary"
- android:textStyle="bold"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- tools:text="Steak and two Eggs" />
+ android:id="@+id/name"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:textColor="?android:textColorPrimary"
+ android:textStyle="bold"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent"
+ tools:text="Steak and two Eggs" />
<TextView
- android:id="@+id/price"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:textColor="?android:textColorSecondary"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/name"
- tools:text="7.95" />
+ android:id="@+id/price"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="8dp"
+ android:textColor="?android:textColorSecondary"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintTop_toBottomOf="@+id/name"
+ tools:text="7.95" />
</androidx.constraintlayout.widget.ConstraintLayout>