| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?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"
- >
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- >
-
- <com.jiaju.widget.JustifyTextView
- android:id="@+id/goods_code_title"
- android:layout_width="80dp"
- android:layout_height="wrap_content"
- android:text="产品编码"
- android:textSize="@dimen/textsize_14"
- android:textColor="@color/white"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text=":"
- android:textSize="@dimen/textsize_14"
- android:textColor="@color/white"/>
- <TextView
- android:id="@+id/goods_code_txt"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textSize="@dimen/textsize_14"
- android:textColor="@color/white"
- />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center_vertical"
- >
- <com.jiaju.widget.JustifyTextView
- android:id="@+id/goods_name_title"
- android:layout_width="80dp"
- android:layout_height="wrap_content"
- android:text="产品名称"
- android:textSize="@dimen/textsize_14"
- android:layout_gravity="center"
- android:textColor="@color/white"
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text=":"
- android:textSize="@dimen/textsize_14"
- android:textColor="@color/white"/>
-
- <TextView
- android:id="@+id/goods_name_txt"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textSize="@dimen/textsize_14"
- android:textColor="@color/white"
- />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center_vertical"
- >
- <com.jiaju.widget.JustifyTextView
- android:id="@+id/cartno_title"
- android:layout_width="80dp"
- android:layout_height="wrap_content"
- android:text="窑车号"
- android:textSize="@dimen/textsize_14"
- android:textColor="@color/white"
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text=":"
- android:textSize="@dimen/textsize_14"
- android:textColor="@color/white"/>
-
- <TextView
- android:id="@+id/cartno_txt"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textSize="@dimen/textsize_14"
- android:textColor="@color/white"
- />
-
- </LinearLayout>
- </LinearLayout>
|