activity_capture.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <SurfaceView
  7. android:id="@+id/capture_preview"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent" />
  10. <RelativeLayout
  11. android:id="@+id/capture_container"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent" >
  14. <ImageView
  15. android:id="@+id/capture_mask_top"
  16. android:layout_width="match_parent"
  17. android:layout_height="200dp"
  18. android:layout_alignParentTop="true"
  19. android:background="@drawable/shadow" />
  20. <RelativeLayout
  21. android:id="@+id/capture_crop_view"
  22. android:layout_width="200dp"
  23. android:layout_height="200dp"
  24. android:layout_below="@id/capture_mask_top"
  25. android:layout_centerHorizontal="true"
  26. android:background="@drawable/qr_code_bg">
  27. <ImageView
  28. android:id="@+id/capture_scan_line"
  29. android:layout_width="match_parent"
  30. android:layout_height="wrap_content"
  31. android:layout_alignParentTop="true"
  32. android:layout_marginTop="5dp"
  33. android:layout_marginBottom="5dp"
  34. android:src="@drawable/scan_line"
  35. android:visibility="visible" />
  36. </RelativeLayout>
  37. <ImageView
  38. android:id="@+id/capture_mask_bottom"
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:layout_alignParentBottom="true"
  42. android:layout_below="@id/capture_crop_view"
  43. android:background="@drawable/shadow" />
  44. <ImageView
  45. android:id="@+id/capture_mask_left"
  46. android:layout_width="wrap_content"
  47. android:layout_height="match_parent"
  48. android:layout_above="@id/capture_mask_bottom"
  49. android:layout_alignParentLeft="true"
  50. android:layout_below="@id/capture_mask_top"
  51. android:layout_toLeftOf="@id/capture_crop_view"
  52. android:background="@drawable/shadow" />
  53. <ImageView
  54. android:id="@+id/capture_mask_right"
  55. android:layout_width="wrap_content"
  56. android:layout_height="match_parent"
  57. android:layout_above="@id/capture_mask_bottom"
  58. android:layout_alignParentRight="true"
  59. android:layout_below="@id/capture_mask_top"
  60. android:layout_toRightOf="@id/capture_crop_view"
  61. android:background="@drawable/shadow" />
  62. </RelativeLayout>
  63. <RelativeLayout
  64. android:layout_width="fill_parent"
  65. android:layout_height="50dp"
  66. android:layout_gravity="top"
  67. android:background="#99000000">
  68. <ImageButton
  69. android:id="@+id/capture_imageview_back"
  70. android:layout_width="42dp"
  71. android:layout_height="42dp"
  72. android:layout_centerVertical="true"
  73. android:background="@drawable/selector_capture_back"/>
  74. <TextView
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:layout_centerInParent="true"
  78. android:textColor="#ffffffff"
  79. android:textSize="20sp"
  80. android:text="扫一扫"/>
  81. </RelativeLayout>
  82. </RelativeLayout>