]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/res/layout/content_new_transaction.xml
abandon the new transaction FAB and use a menu item
[mobile-ledger.git] / app / src / main / res / layout / content_new_transaction.xml
index 28f393d1dbe002c2b8915dacdeb8e722ad1743d4..b4b6babedf9bc1a90e3310dba53742171682d1a0 100644 (file)
@@ -9,29 +9,54 @@
     tools:showIn="@layout/activity_new_transaction">
 
     <ScrollView
+        android:id="@+id/transaction_details"
         android:layout_width="match_parent"
-        android:layout_height="match_parent">
+        android:layout_height="0dp"
+        app:layout_constraintEnd_toEndOf="parent"
+        app:layout_constraintStart_toStartOf="parent"
+        app:layout_constraintTop_toTopOf="parent">
 
         <LinearLayout
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:orientation="vertical">
 
-            <EditText
-                android:id="@+id/new_transaction_date"
+            <android.support.constraint.ConstraintLayout
                 android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:ems="10"
-                android:hint="@string/new_transaction_date_hint"
-                android:inputType="date"
-                android:onClick="pickTransactionDate"
-                android:textAlignment="center" />
+                android:layout_height="match_parent">
+
+                <EditText
+                    android:id="@+id/new_transaction_date"
+                    android:layout_width="94dp"
+                    android:layout_height="wrap_content"
+                    android:ems="10"
+                    android:hint="@string/new_transaction_date_hint"
+                    android:inputType="date"
+                    android:onClick="pickTransactionDate"
+                    android:textAlignment="center"
+                    app:layout_constraintHorizontal_weight="8"
+                    app:layout_constraintStart_toStartOf="parent"
+                    app:layout_constraintTop_toTopOf="parent" />
+
+                <EditText
+                    android:id="@+id/new_transaction_description"
+                    android:layout_width="0dp"
+                    android:layout_height="wrap_content"
+                    android:layout_marginStart="8dp"
+                    android:autofillHints=""
+                    android:ems="10"
+                    android:hint="@string/new_transaction_description_hint"
+                    android:inputType="textPersonName"
+                    app:layout_constraintEnd_toEndOf="parent"
+                    app:layout_constraintHorizontal_weight="30"
+                    app:layout_constraintStart_toEndOf="@+id/new_transaction_date"
+                    app:layout_constraintTop_toTopOf="parent" />
+            </android.support.constraint.ConstraintLayout>
 
             <TableLayout
                 android:id="@+id/new_transaction_accounts_table"
                 android:layout_width="match_parent"
-                android:layout_height="match_parent"
-                >
+                android:layout_height="match_parent">
 
                 <TableRow
                     android:layout_width="match_parent"
@@ -55,7 +80,7 @@
                         android:width="0dp"
                         android:hint="@string/new_transaction_amount_hint"
                         android:inputType="numberDecimal|numberSigned"
-                        android:minWidth="24pt"
+                        android:minWidth="40dp"
                         android:nextFocusDown="@id/new_transaction_acc_2"
                         android:nextFocusForward="@id/new_transaction_acc_2"
                         android:textAlignment="viewEnd" />
                         android:width="0dp"
                         android:hint="@string/new_transaction_amount_hint"
                         android:inputType="numberDecimal|numberSigned"
-                        android:minWidth="24pt"
+                        android:minWidth="40dp"
                         android:textAlignment="viewEnd" />
                 </TableRow>