email_inquiry.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_gravity="bottom"
  6. android:orientation="vertical"
  7. android:layout_height="wrap_content">
  8. <LinearLayout
  9. android:layout_gravity="bottom"
  10. android:layout_width="match_parent"
  11. android:orientation="vertical"
  12. android:layout_marginRight="10dp"
  13. android:layout_marginBottom="10dp"
  14. android:layout_marginTop="10dp"
  15. android:layout_marginLeft="10dp"
  16. android:background="@drawable/coupon_image"
  17. android:layout_height="wrap_content">
  18. <LinearLayout
  19. android:layout_marginRight="10dp"
  20. android:layout_marginBottom="10dp"
  21. android:layout_marginTop="10dp"
  22. android:layout_marginLeft="10dp"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:orientation="horizontal"
  26. android:weightSum="10"
  27. >
  28. <ImageView
  29. android:layout_width="0dp"
  30. android:layout_height="wrap_content"
  31. android:layout_weight="2"
  32. android:src="@drawable/cancel"
  33. />
  34. <TextView
  35. android:layout_width="0dp"
  36. android:layout_weight="8"
  37. android:layout_height="wrap_content"
  38. android:text="@string/email_inquiry"
  39. android:textSize="20dp"
  40. />
  41. </LinearLayout>
  42. <TextView
  43. android:layout_marginRight="10dp"
  44. android:layout_marginBottom="10dp"
  45. android:layout_width="wrap_content"
  46. android:layout_marginLeft="74dp"
  47. android:layout_height="wrap_content"
  48. android:text="@string/email_address"
  49. />
  50. </LinearLayout>
  51. <LinearLayout
  52. android:layout_width="match_parent"
  53. android:layout_height="wrap_content"
  54. android:layout_gravity="bottom"
  55. android:orientation="horizontal"
  56. android:weightSum="4"
  57. >
  58. <Button
  59. android:id="@+id/button_main"
  60. android:layout_width="0dp"
  61. android:layout_height="wrap_content"
  62. android:layout_gravity="bottom"
  63. android:layout_weight="2"
  64. android:text="@string/main"/>
  65. <Button
  66. android:id="@+id/button_previous_page"
  67. android:layout_width="0dp"
  68. android:layout_height="wrap_content"
  69. android:layout_gravity="bottom"
  70. android:layout_weight="2"
  71. android:text="@string/previous_page"/>
  72. </LinearLayout>
  73. </LinearLayout>