| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:padding="8dp"
- android:background="@color/background"
- android:id="@+id/collect">
- <LinearLayout
- android:layout_height="15dp"
- android:layout_width="fill_parent"
- android:orientation="horizontal">
- <TextView
- android:text="采集的工号:"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:textSize="@dimen/textsize_12"
- android:textColor="@color/white"/>
- <TextView
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:id="@+id/ItemText1"
- android:layout_marginLeft="8dp"
- android:textSize="@dimen/textsize_12"
- android:textColor="@color/white"/>
- </LinearLayout>
- <LinearLayout
- android:layout_height="15dp"
- android:layout_width="fill_parent"
- android:orientation="horizontal">
- <TextView
- android:text="产品编码:"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:textSize="@dimen/textsize_12"
- android:textColor="@color/white"/>
- <TextView
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:layout_marginLeft="8dp"
- android:id="@+id/ItemText2"
- android:textSize="@dimen/textsize_12"
- android:textColor="@color/white"/>
- </LinearLayout>
- <LinearLayout
- android:layout_height="15dp"
- android:layout_width="fill_parent"
- android:orientation="horizontal">
- <TextView
- android:text="产品名称:"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:textSize="@dimen/textsize_12"
- android:textColor="@color/white"/>
- <TextView
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:id="@+id/ItemText3"
- android:layout_marginLeft="8dp"
- android:textSize="@dimen/textsize_12"
- android:textColor="@color/white"/>
- </LinearLayout>
- <LinearLayout
- android:layout_height="15dp"
- android:layout_width="fill_parent"
- android:orientation="horizontal">
- <TextView
- android:text="计数数量:"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:textSize="@dimen/textsize_12"
- android:textColor="@color/white"/>
- <TextView
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:id="@+id/ItemText4"
- android:layout_marginLeft="8dp"
- android:textSize="@dimen/textsize_12"
- android:textColor="@color/white"/>
- </LinearLayout>
- </LinearLayout>
|