Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. xmlns:app="http://schemas.android.com/apk/res-auto"
  6. tools:context="com.example.tiagosilva.amob_android.ContactUsFragment"
  7. android:background="@color/AMOB_gray">
  8.  
  9.  
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:orientation="vertical"
  14. android:padding="20dp"
  15. android:weightSum="3">
  16.  
  17. <TextView
  18. android:id="@+id/textView2"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:fontFamily="serif"
  22. android:text="AMOB Headquarters"
  23. android:textAppearance="@style/TextAppearance.AppCompat"
  24. android:textColor="@android:color/white"
  25. android:textStyle="bold" />
  26.  
  27. <TextView
  28. android:id="@+id/textView3"
  29. android:layout_width="match_parent"
  30. android:layout_height="wrap_content"
  31. android:fontFamily="serif"
  32. android:text="Rua Padre Domingos Joaquim Pereira,1249"
  33. android:textAppearance="@style/TextAppearance.AppCompat"
  34. android:textColor="@android:color/white" />
  35.  
  36. <TextView
  37. android:id="@+id/textView4"
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:fontFamily="serif"
  41. android:text="4760-563 Louro"
  42. android:textAppearance="@style/TextAppearance.AppCompat"
  43. android:textColor="@android:color/white"
  44. android:background="@color/AMOB_gray"/>
  45.  
  46. <TextView
  47. android:id="@+id/textView5"
  48. android:layout_width="match_parent"
  49. android:layout_height="wrap_content"
  50. android:fontFamily="serif"
  51. android:text="Vila Nova de Famalicão, Portugal"
  52. android:textAppearance="@style/TextAppearance.AppCompat"
  53. android:textColor="@android:color/white" />
  54.  
  55. <TextView
  56. android:id="@+id/textView7"
  57. android:layout_width="match_parent"
  58. android:layout_height="wrap_content"
  59. android:fontFamily="serif"
  60. android:text="Phone: (+351) 252 330 900"
  61. android:textAppearance="@style/TextAppearance.AppCompat"
  62. android:textColor="@android:color/white" />
  63.  
  64. <TextView
  65. android:id="@+id/textView8"
  66. android:layout_width="match_parent"
  67. android:layout_height="wrap_content"
  68. android:fontFamily="serif"
  69. android:text="Fax: (+351) 252 376 887"
  70. android:textAppearance="@style/TextAppearance.AppCompat"
  71. android:textColor="@android:color/white" />
  72.  
  73. <TextView
  74. android:id="@+id/textView9"
  75. android:layout_width="match_parent"
  76. android:layout_height="wrap_content"
  77. android:fontFamily="serif"
  78. android:text="E-mail: comercial@amob.pt"
  79. android:textAppearance="@style/TextAppearance.AppCompat"
  80. android:textColor="@android:color/white" />
  81.  
  82. <TextView
  83. android:id="@+id/textView6"
  84. android:layout_width="match_parent"
  85. android:layout_height="wrap_content"
  86. android:fontFamily="serif"
  87. android:text="GPS: 41º 26'.16''N / 8º32'31.89''W"
  88. android:textAppearance="@style/TextAppearance.AppCompat"
  89. android:textColor="@android:color/white" />
  90.  
  91.  
  92. <ImageView
  93. android:layout_width="match_parent"
  94. android:layout_height="wrap_content"
  95. android:src="@drawable/gps_amob"
  96. android:id="@+id/gps_map"
  97. android:layout_weight="3"
  98. android:layout_marginTop="10dp"
  99. android:scaleType="fitXY"/>
  100.  
  101. <Button
  102. android:layout_height="wrap_content"
  103. android:layout_width="match_parent"
  104. android:id="@+id/btn_emailUs"
  105. android:background="@drawable/round_buttons"
  106. android:layout_marginTop="10dp"
  107. android:text="Email us">
  108. </Button>
  109.  
  110. <Button
  111. android:layout_height="wrap_content"
  112. android:layout_width="match_parent"
  113. android:id="@+id/btn_callUs"
  114. android:background="@drawable/round_buttons_green"
  115. android:layout_marginTop="10dp"
  116. android:text="Call Us">
  117. </Button>
  118.  
  119. </LinearLayout>
  120. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement