|
|
@@ -1,418 +1,270 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:fillViewport="true">
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
+ android:orientation="vertical"
|
|
|
+ tools:context="com.xzjmyk.pm.activity.ui.erp.activity.crm.VisitReportPlanActivity">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/rl_dateSelect"
|
|
|
+ style="@style/form_relative_customer"
|
|
|
+ android:background="@color/white">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_id1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="开始时间"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
+ <TextView
|
|
|
+ style="@style/form_relative_left_text"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:layout_toRightOf="@+id/tv_id1"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/red" />
|
|
|
+
|
|
|
+ <com.andreabaccega.widget.FormEditText
|
|
|
+ xmlns:editTextFormExample="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tv_date_select"
|
|
|
+ style="@style/form_relative_right_text"
|
|
|
+ android:drawableRight="@drawable/nav_icon_search_default"
|
|
|
+ editTextFormExample:testType="nocheck"
|
|
|
+ android:hint="请选择" />
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/visit_erp_rl"
|
|
|
+ style="@style/form_relative_customer"
|
|
|
+ android:background="@color/white">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_id2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="截止时间"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
+ <TextView
|
|
|
+ style="@style/form_relative_left_text"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:layout_toRightOf="@+id/tv_id2"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/red" />
|
|
|
+ <com.andreabaccega.widget.FormEditText xmlns:editTextFormExample="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tv_visit_login"
|
|
|
+ style="@style/form_relative_right_text"
|
|
|
+ android:drawableRight="@drawable/nav_icon_search_default"
|
|
|
+ editTextFormExample:testType="nocheck"
|
|
|
+ android:hint="请选择" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:orientation="vertical"
|
|
|
- tools:context="com.xzjmyk.pm.activity.ui.erp.activity.crm.VisitReportPlanActivity">
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/rl_dateSelect"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="20dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/date_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="拜访日期"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_date_select"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/name_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/date_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/name_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/address_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="1dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/address_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_signin"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="地址"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_address_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/address_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/address_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/address_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="40dp">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_address_refresh"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:text="定位不准?点我重试"
|
|
|
- android:textColor="#415dea"
|
|
|
- android:textSize="13sp" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/customer_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="1dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/company_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="客户"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_customer_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/company_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/company_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/company_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/linksman_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="20dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/deparment_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="联系人"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_linksman_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/deparment_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/deparment_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/deparment_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/visit_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="1dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/position_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="业务员"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_visit_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/position_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/position_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/position_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/depart_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="1dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/tel_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="部门"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_depart_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_marginBottom="1dp"
|
|
|
- android:layout_toLeftOf="@+id/tel_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/tel_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/tel_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/startTime_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="1dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/startTime_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="开始时间"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_startTim_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/startTime_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/startTime_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/startTime_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/endTime_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="1dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/email_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="截止时间"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_endTime_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/email_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/email_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/email_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/businessState_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:layout_marginBottom="1dp"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/businessState_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="当前商机阶段"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_businessState_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/businessState_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/businessState_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/businessState_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/notes_erp_rl"
|
|
|
- style="@style/IMTbleLine_UP_Me"
|
|
|
- android:background="@color/white">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/notes_text"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:drawableLeft="@drawable/oa_client"
|
|
|
- android:drawablePadding="10dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="备注"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/tv_notes_login"
|
|
|
- style="@style/IMTbleLine_TextValue"
|
|
|
- android:layout_toLeftOf="@+id/notes_arrow_img"
|
|
|
- android:layout_toRightOf="@+id/notes_text"
|
|
|
- android:background="@null"
|
|
|
- android:textColor="@color/text_hine"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/notes_arrow_img"
|
|
|
- android:layout_width="@dimen/next_width"
|
|
|
- android:layout_height="@dimen/next_height"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:alpha="0.26"
|
|
|
- android:background="@drawable/set_list_next"
|
|
|
- android:contentDescription="@string/app_name" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- </LinearLayout>
|
|
|
-
|
|
|
-
|
|
|
-</ScrollView>
|
|
|
-
|
|
|
-
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:visibility="gone">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_address_refresh"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:text="定位不准?点我重试"
|
|
|
+ android:textColor="@color/light_green"
|
|
|
+ android:textSize="13sp" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/customer_erp_rl"
|
|
|
+ style="@style/form_relative_customer"
|
|
|
+ android:layout_marginBottom="1dp"
|
|
|
+ android:background="@color/white">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_id3"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="客户名称"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/form_relative_left_text"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:layout_toRightOf="@+id/tv_id3"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/red" />
|
|
|
+
|
|
|
+ <com.andreabaccega.widget.FormEditText xmlns:editTextFormExample="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tv_customer_login"
|
|
|
+ style="@style/form_relative_right_text"
|
|
|
+ android:drawableRight="@drawable/nav_icon_search_default"
|
|
|
+ editTextFormExample:testType="nocheck"
|
|
|
+ android:hint="请输入" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/linksman_erp_rl"
|
|
|
+ style="@style/form_relative_customer"
|
|
|
+ android:layout_marginBottom="1dp"
|
|
|
+ android:background="@color/white">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_id4"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="联系人"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
+ <TextView
|
|
|
+ style="@style/form_relative_left_text"
|
|
|
+ android:layout_marginLeft="35dp"
|
|
|
+ android:layout_toRightOf="@+id/tv_id4"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/red" />
|
|
|
+ <com.andreabaccega.widget.FormEditText xmlns:editTextFormExample="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tv_linksman_login"
|
|
|
+ style="@style/form_relative_right_text"
|
|
|
+ editTextFormExample:testType="nocheck"
|
|
|
+ android:hint="请输入" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/address_erp_rl"
|
|
|
+ style="@style/form_relative_customer"
|
|
|
+ android:layout_marginBottom="1dp"
|
|
|
+ android:background="@color/white">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_id5"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:editable="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="客户地址"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/form_relative_left_text"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:layout_toRightOf="@+id/tv_id5"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/red" />
|
|
|
+
|
|
|
+ <com.andreabaccega.widget.FormEditText xmlns:editTextFormExample="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tv_address_login"
|
|
|
+ style="@style/form_relative_right_text"
|
|
|
+ android:maxHeight="70dp"
|
|
|
+ editTextFormExample:testType="nocheck"
|
|
|
+ android:hint="请输入" />
|
|
|
+ </RelativeLayout>
|
|
|
+ <RelativeLayout
|
|
|
+ style="@style/form_relative_customer"
|
|
|
+ android:background="@color/white">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_id6"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="拜访主题"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
+ <TextView
|
|
|
+ style="@style/form_relative_left_text"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:layout_toRightOf="@+id/tv_id6"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/red" />
|
|
|
+ <com.andreabaccega.widget.FormEditText xmlns:editTextFormExample="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tv_visit_theme"
|
|
|
+ style="@style/form_relative_right_text"
|
|
|
+ editTextFormExample:testType="nocheck"
|
|
|
+ android:hint="请输入" />
|
|
|
+ </RelativeLayout>
|
|
|
+ <RelativeLayout
|
|
|
+ style="@style/form_relative_customer"
|
|
|
+ android:background="@color/white">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_id7"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="当前阶段"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
+ <TextView
|
|
|
+ style="@style/form_relative_left_text"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:layout_toRightOf="@+id/tv_id7"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/red" />
|
|
|
+ <com.andreabaccega.widget.FormEditText
|
|
|
+ xmlns:editTextFormExample="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tv_visit_steps"
|
|
|
+ style="@style/form_relative_right_text"
|
|
|
+ android:drawableRight="@drawable/nav_icon_search_default"
|
|
|
+ editTextFormExample:testType="nocheck"
|
|
|
+ android:hint="请选择" />
|
|
|
+ </RelativeLayout>
|
|
|
+ <RelativeLayout
|
|
|
+ style="@style/form_relative_customer"
|
|
|
+ android:background="@color/white">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_id8"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="拜访内容"
|
|
|
+ android:textColor="@color/text_main"
|
|
|
+ android:textSize="@dimen/text_main" />
|
|
|
+ <TextView
|
|
|
+ style="@style/form_relative_left_text"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:layout_toRightOf="@+id/tv_id8"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/red" />
|
|
|
+ <com.andreabaccega.widget.FormEditText xmlns:editTextFormExample="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:id="@+id/tv_visit_content"
|
|
|
+ style="@style/form_relative_right_text"
|
|
|
+ editTextFormExample:testType="nocheck"
|
|
|
+ android:hint="请输入" />
|
|
|
+ </RelativeLayout>
|
|
|
+</LinearLayout>
|