reset_grouting_popupwindow_menu.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/rlyt_menu"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="horizontal" >
  7. <View
  8. android:layout_width="0dp"
  9. android:layout_height="0dp"
  10. android:layout_weight="3" />
  11. <LinearLayout
  12. android:layout_width="0dp"
  13. android:layout_height="match_parent"
  14. android:layout_weight="2"
  15. android:orientation="vertical" >
  16. <View
  17. android:layout_width="0dp"
  18. android:layout_height="0dp"
  19. android:layout_weight="0.1" />
  20. <LinearLayout
  21. android:layout_width="fill_parent"
  22. android:id="@+id/menuLin"
  23. android:layout_height="0dp"
  24. android:layout_weight="1.3"
  25. android:background="@drawable/pop_menu"
  26. android:orientation="vertical">
  27. <LinearLayout
  28. android:layout_width="fill_parent"
  29. android:layout_height="0dp"
  30. android:layout_weight="1"
  31. android:id="@+id/resetGroutingLin"
  32. android:orientation="horizontal" >
  33. <ImageView
  34. android:layout_width="25dp"
  35. android:layout_height="25dp"
  36. android:layout_gravity="center_horizontal|center_vertical"
  37. android:src="@drawable/tongji9"
  38. android:scaleType="centerInside" />
  39. <TextView
  40. android:layout_width="fill_parent"
  41. android:layout_height="wrap_content"
  42. android:id="@+id/tvResetGrouting"
  43. android:layout_gravity="center_horizontal|center_vertical"
  44. android:layout_marginLeft="3dp"
  45. android:textColor="@color/black"
  46. android:textSize="@dimen/textsize_16" />
  47. </LinearLayout>
  48. <View
  49. android:layout_width="fill_parent"
  50. android:layout_height="1dp"
  51. android:background="@color/text_gray"
  52. />
  53. </LinearLayout>
  54. <View
  55. android:layout_width="0dp"
  56. android:layout_height="0dp"
  57. android:layout_weight="10" />
  58. </LinearLayout>
  59. <View
  60. android:layout_width="0dp"
  61. android:layout_height="0dp"
  62. android:layout_weight="0.05" />
  63. </LinearLayout>