| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@color/white"
- tools:context=".MissingScanActivity" >
- <include layout="@layout/fragment_title"
- android:id="@+id/tile" />
- <LinearLayout
- android:id="@+id/groutingworknolay"
- android:layout_below="@id/tile"
- android:layout_marginTop="20dp"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- >
- <TextView
- android:id="@+id/groutingworknoTitle"
- android:layout_marginLeft="10dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="@dimen/textsize_16"
- android:text="漏扫工号:"
- />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- >
- <EditText
- android:id="@+id/groutingworknotxt"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:singleLine="true"
- android:textSize="@dimen/textsize_16"
- android:background="@null"
- android:text=""
- android:layout_marginRight="10dp"
- />
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:layout_marginRight="10dp"
- android:background="@color/text_gray"
- />
- </LinearLayout>
-
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/errormessagelay"
- android:layout_marginTop="10dp"
- android:layout_below="@id/groutingworknolay"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- >
- <TextView
- android:id="@+id/errormsgtitle"
- android:layout_marginLeft="10dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="@dimen/textsize_16"
- android:text="状态:"
- />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- >
- <TextView
- android:id="@+id/errmsgtxt"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="3dp"
- android:layout_marginRight="3dp"
- android:maxLines="10"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_16"
- />
-
- </LinearLayout>
-
- </LinearLayout>
-
- <Button
- android:id="@+id/saveBtn"
- android:layout_width="150dp"
- android:layout_height="45dp"
- android:layout_marginBottom="3dp"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:textSize="@dimen/textsize_16"
- android:textColor="@color/white"
- android:background="@drawable/missing_scan_btn_selector"
- android:text="保存 "
- />
-
-
- </RelativeLayout>
|