| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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/intermediateCustomerCheck"
- 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:layout_marginTop="5dp"
- 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/customerNameTxt"
- 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>
-
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_marginTop="10dp"
- android:layout_height="1dp"
- android:background="@color/EBEBEB" />
- </LinearLayout>
|