activity_recovery_barcode.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. tools:context=".RecoveryBarcodeActivity" >
  6. <include
  7. android:id="@+id/recovery_title"
  8. layout="@layout/fragment_title" />
  9. <RelativeLayout
  10. android:layout_below="@id/recovery_title"
  11. android:background="@color/background"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent">
  14. <LinearLayout
  15. android:layout_width="fill_parent"
  16. android:layout_height="35dp"
  17. android:layout_marginTop="15dp"
  18. android:id="@+id/lin1"
  19. android:orientation="horizontal"
  20. >
  21. <TextView
  22. android:id="@+id/barcode_title"
  23. android:layout_width="60dp"
  24. android:layout_height="wrap_content"
  25. android:layout_marginTop="8dp"
  26. android:layout_marginLeft="8dp"
  27. android:text="条码:"
  28. android:textSize="@dimen/textsize_16"
  29. android:gravity="left"
  30. android:textColor="@color/white"/>
  31. <LinearLayout
  32. android:layout_width="wrap_content"
  33. android:layout_marginLeft="3dp"
  34. android:layout_height="match_parent"
  35. android:orientation="vertical"
  36. >
  37. <EditText
  38. android:id="@+id/barcodeEdt"
  39. android:layout_width="160dp"
  40. android:layout_height="34dp"
  41. android:layout_marginRight="10dp"
  42. android:imeOptions="actionGo"
  43. android:background="@null"
  44. android:text=""
  45. android:textSize="@dimen/textsize_24"
  46. android:textColor="@color/white"
  47. android:singleLine="true"
  48. />
  49. <View
  50. android:layout_width="fill_parent"
  51. android:layout_height="1dp"
  52. android:background="@color/text_gray"/>
  53. </LinearLayout>
  54. </LinearLayout>
  55. </RelativeLayout>
  56. </RelativeLayout>