|
@@ -0,0 +1,293 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout 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:id="@+id/main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <include
|
|
|
+ layout="@layout/layout_title"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_margin="@dimen/common_padding">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/client_name"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/client_name"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="end"
|
|
|
+ android:hint="@string/please_input"
|
|
|
+ android:importantForAutofill="no"
|
|
|
+ android:inputType="text"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textColorHint="@color/hint_text_color"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/customer_company"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/customer_company"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="end"
|
|
|
+ android:hint="@string/please_input"
|
|
|
+ android:importantForAutofill="no"
|
|
|
+ android:inputType="text"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textColorHint="@color/hint_text_color"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/client_job_name"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/client_job"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="end"
|
|
|
+ android:hint="@string/please_input"
|
|
|
+ android:importantForAutofill="no"
|
|
|
+ android:inputType="text"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textColorHint="@color/hint_text_color"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/client_contract_way"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/contract_way"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="end"
|
|
|
+ android:hint="@string/please_input"
|
|
|
+ android:importantForAutofill="no"
|
|
|
+ android:inputType="textEmailAddress|phone"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textColorHint="@color/hint_text_color"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/start_time"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/visit_start_time"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="end"
|
|
|
+ android:hint="@string/please_select"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textColorHint="@color/hint_text_color"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/end_time"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/visit_end_time"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="end"
|
|
|
+ android:hint="@string/please_select"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textColorHint="@color/hint_text_color"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding_huge"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="start"
|
|
|
+ android:text="@string/visit_matter"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ <com.pan_american.android.util.ScrollEditText
|
|
|
+ android:id="@+id/notes"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="120dp"
|
|
|
+ android:layout_marginTop="@dimen/common_padding" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </ScrollView>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/button_height"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_marginTop="@dimen/common_padding_huge"
|
|
|
+ android:layout_marginEnd="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding_heavy"
|
|
|
+ android:background="@drawable/shape_corner_solid_blue"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <com.pan_american.android.util.CommitButton
|
|
|
+ android:id="@+id/commit"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</LinearLayout>
|