| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".RecoveryBarcodeActivity" >
-
- <include
- android:id="@+id/recovery_title"
- layout="@layout/fragment_title" />
-
- <RelativeLayout
- android:layout_below="@id/recovery_title"
- android:background="@color/background"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="35dp"
- android:layout_marginTop="15dp"
- android:id="@+id/lin1"
- android:orientation="horizontal"
-
- >
- <TextView
- android:id="@+id/barcode_title"
- android:layout_width="60dp"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:layout_marginLeft="8dp"
- android:text="条码:"
- android:textSize="@dimen/textsize_16"
- android:gravity="left"
- android:textColor="@color/white"/>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_marginLeft="3dp"
- android:layout_height="match_parent"
- android:orientation="vertical"
- >
- <EditText
- android:id="@+id/barcodeEdt"
- android:layout_width="160dp"
- android:layout_height="34dp"
- android:layout_marginRight="10dp"
- android:imeOptions="actionGo"
- android:background="@null"
- android:text=""
- android:textSize="@dimen/textsize_24"
- android:textColor="@color/white"
- android:singleLine="true"
- />
-
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:background="@color/text_gray"/>
- </LinearLayout>
-
-
- </LinearLayout>
-
- </RelativeLayout>
- </RelativeLayout>
|