activity_cancel_call_out_head.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical" >
  6. <LinearLayout
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:layout_marginTop="5dp"
  10. android:gravity="center"
  11. android:orientation="horizontal" >
  12. <TextView
  13. android:layout_width="80dp"
  14. android:layout_height="wrap_content"
  15. android:layout_marginLeft="10dp"
  16. android:text="条码:"
  17. android:textColor="@color/white"
  18. android:textSize="@dimen/textsize_16" />
  19. <LinearLayout
  20. android:layout_width="fill_parent"
  21. android:layout_height="wrap_content"
  22. android:layout_marginRight="8dp"
  23. android:orientation="vertical" >
  24. <EditText
  25. android:id="@+id/edtBarCode"
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:background="@null"
  29. android:imeOptions="actionGo"
  30. android:maxLength="12"
  31. android:singleLine="true"
  32. android:textColor="@color/white"
  33. android:textSize="@dimen/textsize_24" />
  34. <View
  35. android:layout_width="wrap_content"
  36. android:layout_height="1dp"
  37. android:background="@color/text_gray" />
  38. </LinearLayout>
  39. </LinearLayout>
  40. <LinearLayout
  41. android:id="@+id/lin3"
  42. android:layout_width="fill_parent"
  43. android:layout_height="wrap_content"
  44. android:layout_marginTop="12dp"
  45. android:orientation="vertical" >
  46. <View
  47. android:layout_width="fill_parent"
  48. android:layout_height="1dp"
  49. android:background="@color/text_gray" />
  50. <TextView
  51. android:layout_width="fill_parent"
  52. android:layout_height="wrap_content"
  53. android:layout_marginLeft="10dp"
  54. android:layout_marginRight="10dp"
  55. android:text="条码信息:"
  56. android:textColor="@color/white"
  57. android:textSize="@dimen/textsize_16" />
  58. <View
  59. android:layout_width="fill_parent"
  60. android:layout_height="1dp"
  61. android:background="@color/text_gray" />
  62. </LinearLayout>
  63. </LinearLayout>