+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>
-<android.support.constraint.ConstraintLayout 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="match_parent"
- app:layout_behavior="@string/appbar_scrolling_view_behavior"
- tools:context=".NewTransactionActivity"
- tools:showIn="@layout/activity_new_transaction">
-
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
-
- <EditText
- android:id="@+id/new_transaction_date"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:ems="10"
- android:hint="@string/new_transaction_date_hint"
- android:importantForAutofill="no"
- android:inputType="date"
- android:onClick="pickTransactionDate"
- android:selectAllOnFocus="true"
- android:singleLine="true"
- android:textAlignment="center"
- android:textStyle="bold" />
-
- <LinearLayout
- android:importantForAutofill="noExcludeDescendants"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
-
- <AutoCompleteTextView
- android:id="@+id/autoCompleteTextView2"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:hint="@string/new_transaction_account_hint"
- android:text="" />
-
- <EditText
- android:id="@+id/editText4"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ems="10"
- android:hint="@string/new_transaction_amount_hint"
- android:inputType="numberSigned|numberDecimal"
- android:textAlignment="viewEnd" />
- </LinearLayout>
-
- </LinearLayout>
- </ScrollView>
-
-</android.support.constraint.ConstraintLayout>
\ No newline at end of file