makebillet_change_popupwindow_menu.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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:layout_height="0dp"
  23. android:layout_weight="4.5"
  24. android:background="@drawable/pop_menu"
  25. android:orientation="vertical" >
  26. <View
  27. android:layout_width="match_parent"
  28. android:layout_height="0dp"
  29. android:layout_weight="0.5" />
  30. <LinearLayout
  31. android:layout_width="fill_parent"
  32. android:layout_height="0dp"
  33. android:layout_weight="2"
  34. android:id="@+id/barcodechangelay"
  35. android:orientation="horizontal" >
  36. <ImageView
  37. android:layout_width="30dp"
  38. android:layout_height="30dp"
  39. android:layout_marginLeft="3dp"
  40. android:gravity="center_horizontal|center_vertical"
  41. android:src="@drawable/scan"
  42. android:scaleType="centerInside" />
  43. <TextView
  44. android:layout_width="fill_parent"
  45. android:layout_height="wrap_content"
  46. android:layout_marginTop="2dp"
  47. android:gravity="center_horizontal|center_vertical"
  48. android:text="扫一扫"
  49. android:textColor="@color/black"
  50. android:textSize="@dimen/textsize_16" />
  51. </LinearLayout>
  52. </LinearLayout>
  53. <View
  54. android:layout_width="0dp"
  55. android:layout_height="0dp"
  56. android:layout_weight="16" />
  57. </LinearLayout>
  58. <View
  59. android:layout_width="0dp"
  60. android:layout_height="0dp"
  61. android:layout_weight="0.05" />
  62. </LinearLayout>