| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?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="match_parent"
- android:orientation="vertical" >
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:layout_marginLeft="10dp"
- android:orientation="horizontal"
- >
- <TextView
- android:layout_width="100dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:text="产品条码:"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_16"
- android:id="@+id/tw_code"/>
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:id="@+id/edt_barcode"
- android:textSize="@dimen/textsize_24"
- android:textColor="@color/white"
- android:singleLine="true"
- android:background="@null"
- android:text=""
- android:imeOptions="actionGo"
- android:layout_marginRight="10dp"
- />
-
-
- </LinearLayout>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="110dp"
- android:layout_marginRight="10dp"
- >
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:background="@color/text_gray"
- />
-
- </LinearLayout>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="110dp"
- android:layout_marginRight="10dp"
- android:orientation="vertical"
- >
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:background="@color/text_gray"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- >
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:layout_marginLeft="0dp"
- android:layout_marginRight="0dp"
- android:layout_marginTop="12dp"
- android:background="@color/text_gray"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="产品信息:"
- android:textColor="@color/white"
- android:textSize="@dimen/textsize_16"
- android:layout_marginTop="0dp"
- android:layout_marginLeft="10dp"
- />
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:layout_marginLeft="0dp"
- android:layout_marginRight="0dp"
- android:layout_marginTop="0dp"
- android:background="@color/text_gray"/>
- </LinearLayout>
- </LinearLayout>
|