ddd2c0917d41ea487bf843ba5e29ed53a0e3751f.svn-base 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <FrameLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="40dip"
  9. android:background="#F8F8F8">
  10. <TextView
  11. android:id="@+id/tx_title"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:layout_gravity="center_vertical|left"
  15. android:layout_marginLeft="22dip"
  16. android:textColor="#333333"
  17. android:textSize="13sp" />
  18. <TextView
  19. android:id="@+id/tx_finish"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:layout_gravity="center_vertical|right"
  23. android:paddingBottom="10dip"
  24. android:paddingLeft="15dip"
  25. android:paddingRight="15dip"
  26. android:paddingTop="10dip"
  27. android:text="完成"
  28. android:textColor="#8A7ED8"
  29. android:textSize="15sp" />
  30. </FrameLayout>
  31. <FrameLayout
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content">
  34. <LinearLayout
  35. android:layout_width="match_parent"
  36. android:layout_height="wrap_content"
  37. android:background="#FFFFFF"
  38. android:orientation="horizontal"
  39. android:paddingBottom="5dip"
  40. android:paddingTop="5dip">
  41. <FrameLayout
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content">
  44. <eVVM.apk.helper.basepicker.LoopMsgView
  45. android:id="@+id/loop_data"
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. android:layout_gravity="center_horizontal" />
  49. <TextView
  50. android:id="@+id/tx_unit"
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. android:layout_gravity="center"
  54. android:layout_marginLeft="40dip"
  55. android:textColor="#B3B3B3" />
  56. </FrameLayout>
  57. </LinearLayout>
  58. <View
  59. android:layout_width="match_parent"
  60. android:layout_height="1px"
  61. android:layout_gravity="center_vertical"
  62. android:layout_marginBottom="15dip"
  63. android:background="#A5A5A5" />
  64. <View
  65. android:layout_width="match_parent"
  66. android:layout_height="1px"
  67. android:layout_gravity="center_vertical"
  68. android:layout_marginTop="15dip"
  69. android:background="#A5A5A5" />
  70. </FrameLayout>
  71. <View
  72. android:layout_width="match_parent"
  73. android:layout_height="1px"
  74. android:background="#E2E2E2" />
  75. </LinearLayout>