| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/rootView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/qingcolor" >
- <include
- android:id="@+id/tile"
- layout="@layout/fragment_title" />
- <LinearLayout
- android:id="@+id/sendlay"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:background="@color/qingcolor"
- android:gravity="center_horizontal"
- android:orientation="horizontal" >
- <Button
- android:id="@+id/btnSure"
- android:layout_width="fill_parent"
- android:layout_height="45dp"
- android:layout_weight="1"
- android:background="@drawable/login_btn_selector"
- android:text="确定"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_17" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_above="@id/sendlay"
- android:layout_below="@id/tile"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp"
- android:orientation="horizontal" >
- <com.jiaju.widget.JustifyTextView
- android:layout_width="70dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:text="工序"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_16" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:text=":"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_16" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <Spinner
- android:id="@+id/procedureSpin"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/spinner_drop_down" >
- </Spinner>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp"
- android:orientation="horizontal" >
- <com.jiaju.widget.JustifyTextView
- android:layout_width="70dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:text="工位"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_16" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:text=":"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_16" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <Spinner
- android:id="@+id/stationSpin"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/spinner_drop_down" >
- </Spinner>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/workernamelay"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/workernameTitle"
- android:layout_width="90dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:text="当前员工:"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_16" />
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:background="@color/text_gray" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- <ListView
- android:id="@+id/staffLst"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:cacheColorHint="#00000000"
- android:divider="@null" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|