activity_missing_scan.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="@color/white"
  6. tools:context=".MissingScanActivity" >
  7. <include layout="@layout/fragment_title"
  8. android:id="@+id/tile" />
  9. <LinearLayout
  10. android:id="@+id/groutingworknolay"
  11. android:layout_below="@id/tile"
  12. android:layout_marginTop="20dp"
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content"
  15. android:orientation="horizontal"
  16. >
  17. <TextView
  18. android:id="@+id/groutingworknoTitle"
  19. android:layout_marginLeft="10dp"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:textSize="@dimen/textsize_16"
  23. android:text="漏扫工号:"
  24. />
  25. <LinearLayout
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:orientation="vertical"
  29. >
  30. <EditText
  31. android:id="@+id/groutingworknotxt"
  32. android:layout_width="fill_parent"
  33. android:layout_height="wrap_content"
  34. android:singleLine="true"
  35. android:textSize="@dimen/textsize_16"
  36. android:background="@null"
  37. android:text=""
  38. android:layout_marginRight="10dp"
  39. />
  40. <View
  41. android:layout_width="fill_parent"
  42. android:layout_height="1dp"
  43. android:layout_marginRight="10dp"
  44. android:background="@color/text_gray"
  45. />
  46. </LinearLayout>
  47. </LinearLayout>
  48. <LinearLayout
  49. android:id="@+id/errormessagelay"
  50. android:layout_marginTop="10dp"
  51. android:layout_below="@id/groutingworknolay"
  52. android:layout_width="fill_parent"
  53. android:layout_height="wrap_content"
  54. android:orientation="vertical"
  55. >
  56. <TextView
  57. android:id="@+id/errormsgtitle"
  58. android:layout_marginLeft="10dp"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:textSize="@dimen/textsize_16"
  62. android:text="状态:"
  63. />
  64. <LinearLayout
  65. android:layout_width="fill_parent"
  66. android:layout_height="wrap_content"
  67. android:orientation="vertical"
  68. >
  69. <TextView
  70. android:id="@+id/errmsgtxt"
  71. android:layout_width="fill_parent"
  72. android:layout_height="wrap_content"
  73. android:layout_marginLeft="3dp"
  74. android:layout_marginRight="3dp"
  75. android:maxLines="10"
  76. android:textColor="@color/black"
  77. android:textSize="@dimen/textsize_16"
  78. />
  79. </LinearLayout>
  80. </LinearLayout>
  81. <Button
  82. android:id="@+id/saveBtn"
  83. android:layout_width="150dp"
  84. android:layout_height="45dp"
  85. android:layout_marginBottom="3dp"
  86. android:layout_alignParentBottom="true"
  87. android:layout_centerHorizontal="true"
  88. android:textSize="@dimen/textsize_16"
  89. android:textColor="@color/white"
  90. android:background="@drawable/missing_scan_btn_selector"
  91. android:text="保存 "
  92. />
  93. </RelativeLayout>