|
|
@@ -0,0 +1,455 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<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:orientation="vertical"
|
|
|
+ tools:ignore="MissingDefaultResource">
|
|
|
+ <ScrollView
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="人员编号:"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textColor="@color/black">
|
|
|
+ </TextView>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <AutoCompleteTextView
|
|
|
+ android:id="@+id/tv_dc_emcode"
|
|
|
+ style="@style/EditTextLineStyle"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:inputType="number"
|
|
|
+ android:hint="请输入人员编号"
|
|
|
+ android:textSize="@dimen/dp_10"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_dc_emcode_delete"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center|right"
|
|
|
+ android:layout_marginRight="13dp"
|
|
|
+ android:src="@drawable/wrong"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </FrameLayout>
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_dc_emcode"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:clickable="false" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:text="不良归属:">
|
|
|
+ </TextView>
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <AutoCompleteTextView
|
|
|
+ android:id="@+id/at_station"
|
|
|
+ style="@style/EditTextLineStyle"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:hint="请输入不良归属" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_station"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center|right"
|
|
|
+ android:layout_marginRight="13dp"
|
|
|
+ android:src="@drawable/wrong"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </FrameLayout>
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_resources"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:background="@drawable/bg_button"
|
|
|
+ android:src="@drawable/search_48" />
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:text="工单流水:">
|
|
|
+ </TextView>
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <AutoCompleteTextView
|
|
|
+ android:id="@+id/ce_work_code"
|
|
|
+ style="@style/EditTextLineStyle"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:inputType="number"
|
|
|
+ android:hint="请输入工单流水" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_work_code"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center|right"
|
|
|
+ android:layout_marginRight="13dp"
|
|
|
+ android:src="@drawable/wrong"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </FrameLayout>
|
|
|
+ <ImageView
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:id="@+id/iv_popuwindow"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:background="@drawable/bg_button"
|
|
|
+ android:src="@drawable/search_48" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="人员编号:"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textColor="@color/black">
|
|
|
+ </TextView>
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <AutoCompleteTextView
|
|
|
+ style="@style/EditTextLineStyle"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:inputType="number"
|
|
|
+ android:hint="请输入人员编号"
|
|
|
+ android:textSize="@dimen/dp_10"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center|right"
|
|
|
+ android:layout_marginRight="13dp"
|
|
|
+ android:src="@drawable/wrong"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </FrameLayout>
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:clickable="false" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:text="不良归属:">
|
|
|
+ </TextView>
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <AutoCompleteTextView
|
|
|
+ style="@style/EditTextLineStyle"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:hint="请输入不良归属" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center|right"
|
|
|
+ android:layout_marginRight="13dp"
|
|
|
+ android:src="@drawable/wrong"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </FrameLayout>
|
|
|
+ <ImageView
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:src="@drawable/search_48" />
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:text="工单流水:">
|
|
|
+ </TextView>
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <AutoCompleteTextView
|
|
|
+ style="@style/EditTextLineStyle"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:inputType="number"
|
|
|
+ android:hint="请输入工单流水" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center|right"
|
|
|
+ android:layout_marginRight="13dp"
|
|
|
+ android:src="@drawable/wrong"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </FrameLayout>
|
|
|
+ <ImageView
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:src="@drawable/search_48" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:visibility="gone"
|
|
|
+ android:layout_marginTop="@dimen/dp_10"
|
|
|
+ android:layout_marginBottom="@dimen/dp_10"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_macode"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="计划单号"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:textColor="@color/black">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_pr_code"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="产品代码"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textColor="@color/black">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_pr_detail"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="产品名称"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textColor="@color/black">
|
|
|
+ </TextView>
|
|
|
+ </LinearLayout>
|
|
|
+ <ImageView
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_margin="@dimen/dp_10"
|
|
|
+ android:id="@+id/iv_personnel_data"
|
|
|
+ android:layout_width="200dp"
|
|
|
+ android:layout_height="200dp"
|
|
|
+ android:scaleType="fitXY"
|
|
|
+ android:background="@drawable/bg_imageview_rauide">
|
|
|
+ </ImageView>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_marginLeft="@dimen/dp_10"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:text="不良现象">
|
|
|
+ </TextView>
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/rv_one"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </android.support.v7.widget.RecyclerView>
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_marginLeft="@dimen/dp_10"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="不良位号">
|
|
|
+ </TextView>
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/rv_two"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </android.support.v7.widget.RecyclerView>
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_marginLeft="@dimen/dp_10"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="@dimen/dp_10"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="不良原因">
|
|
|
+ </TextView>
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
+ android:id="@+id/rv_three"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </android.support.v7.widget.RecyclerView>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <com.bin.david.form.core.SmartTable
|
|
|
+ android:id="@+id/jlt_storage_in_filter_list_st"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_weight="0.4"
|
|
|
+ android:layout_height="match_parent" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </ScrollView>
|
|
|
+ <com.uas.hycollection.view.ClearableEditText
|
|
|
+ android:id="@+id/tv_hintshow"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="80dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:text=""
|
|
|
+ android:gravity="top"
|
|
|
+ android:textSize="15sp"
|
|
|
+ android:layout_marginRight="@dimen/dp_10"
|
|
|
+ android:focusable="false"
|
|
|
+ android:background="@drawable/bg_line_edittext"
|
|
|
+ android:visibility="gone">
|
|
|
+ </com.uas.hycollection.view.ClearableEditText>
|
|
|
+ <TextView
|
|
|
+ android:layout_marginTop="@dimen/textsize_20"
|
|
|
+ android:layout_marginBottom="@dimen/textsize_20"
|
|
|
+ android:id="@+id/tv_save"
|
|
|
+ android:layout_width="150dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:text="提交"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:gravity="center"
|
|
|
+ android:textSize="@dimen/textsize_20"
|
|
|
+ android:background="@drawable/bg_button">
|
|
|
+ </TextView>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_gonema_code"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:visibility="gone">
|
|
|
+ </TextView>
|
|
|
+</LinearLayout>
|