| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/dutyperson_relative"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="55dp"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/selectflag"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:background="@drawable/check" />
-
-
- <com.jiaju.widget.JustifyTextView
- android:id="@+id/tvStaffCode"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="5dp"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_14" />
- <TextView
- android:id="@+id/tvStaffName"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="5dp"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_14" />
-
-
- <Spinner
- android:id="@+id/workJobsSp"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="40dp"
- android:layout_marginLeft="8dp"
- android:layout_gravity="center_vertical"
- android:background="@drawable/spinner_drop_down" />
-
- </LinearLayout>
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:background="@color/text_gray" />
- </LinearLayout>
|