| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?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/ptach">
- <LinearLayout
- android:layout_height="wrap_content"
- 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="wrap_content"
- android:layout_width="fill_parent"
- android:orientation="horizontal">
- <TextView
- android:text="产品Code:"
- 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="wrap_content"
- 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="wrap_content"
- 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>
|