| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/bg_list_item"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <CheckBox
- android:id="@+id/salesmanCheck"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:button="@drawable/checkbox"
- android:checked="false"
- android:focusable="false"
- android:focusableInTouchMode="false"
- android:layout_gravity="center_vertical" />
- <LinearLayout
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="70dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:gravity="center"
- android:text="员工名称:"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- <TextView
- android:id="@+id/StaffName"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:gravity="center_vertical"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="70dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:gravity="center"
- android:text="所属部门:"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- <TextView
- android:id="@+id/OrganizationName"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:gravity="center_vertical"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="70dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:gravity="center"
- android:text="员工编码:"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- <TextView
- android:id="@+id/StaffCode"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:gravity="center_vertical"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
-
- </LinearLayout>
-
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="70dp"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:layout_marginLeft="8dp"
- android:text="职 务:"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- <TextView
- android:id="@+id/dutiesTxt"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:gravity="center_vertical"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
-
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="70dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:layout_marginTop="3dp"
- android:gravity="center"
- android:text="主业务员:"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- <com.dongkesoft.ibossmini.view.SwitchButton
- android:id="@+id/mainSalesmanBtn"
- android:layout_width="45dp"
- android:layout_height="25dp"
- android:layout_marginLeft="8dp"
- app:borderWidth="0.8dp"
- app:offBorderColor="@color/light_gray"
- app:offColor="@color/light_gray"
- app:onColor="@color/red"
- app:spotColor="@color/common_white"
- />
-
- </LinearLayout>
- </LinearLayout>
-
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_marginTop="10dp"
- android:layout_height="1dp"
- android:background="@color/EBEBEB" />
- </LinearLayout>
|