Advertisement
Guest User

Untitled

a guest
Mar 9th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.13 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. xmlns:map="http://schemas.android.com/apk/res-auto"
  5. android:id="@+id/scrollView1"
  6. android:layout_width="fill_parent"
  7. android:layout_height="match_parent"
  8. android:fillViewport="true" >
  9.  
  10. <LinearLayout
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:background="@color/white"
  14. android:orientation="vertical" >
  15.  
  16. <RelativeLayout
  17. android:id="@+id/toplayoutcontactus"
  18. android:layout_width="fill_parent"
  19. android:layout_height="wrap_content"
  20. android:layout_margin="5dp"
  21. android:background="@color/white"
  22. android:baselineAligned="true" >
  23.  
  24. <TextView
  25. android:id="@+id/headingText"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:text="Niche Bookbinding Dakabo ApS"
  29. android:textAppearance="?android:attr/textAppearanceLarge"
  30. android:textColor="@color/black"
  31. android:textSize="15sp"
  32. android:textStyle="bold" />
  33.  
  34. <TextView
  35. android:id="@+id/addresstextone"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_alignParentLeft="true"
  39. android:layout_below="@+id/headingText"
  40. android:text="Glimvej 22 B, Glim
  41. 4000 Roskilde"
  42. android:textAppearance="?android:attr/textAppearanceMedium"
  43. android:textColor="@color/background_material_dark"
  44. android:textSize="12sp" />
  45.  
  46. <TextView
  47. android:id="@+id/emailID"
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:layout_alignParentLeft="true"
  51. android:layout_below="@+id/addresstextone"
  52. android:text="Email:"
  53. android:textAppearance="?android:attr/textAppearanceMedium"
  54. android:textSize="12sp"
  55. android:textStyle="bold" />
  56.  
  57. <TextView
  58. android:id="@+id/emailText"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:layout_alignTop="@+id/emailID"
  62. android:layout_marginLeft="5dp"
  63. android:layout_toRightOf="@+id/emailID"
  64. android:text="dakabo@dakabo.dk"
  65. android:textColor="@color/background_material_dark"
  66. android:textSize="12sp" />
  67.  
  68. <TextView
  69. android:id="@+id/mobile"
  70. android:layout_width="wrap_content"
  71. android:layout_height="wrap_content"
  72. android:layout_alignParentLeft="true"
  73. android:layout_below="@+id/emailID"
  74. android:layout_marginTop="2dp"
  75. android:text="MOBILE:"
  76. android:textAppearance="?android:attr/textAppearanceMedium"
  77. android:textSize="12sp"
  78. android:textStyle="bold" />
  79.  
  80. <TextView
  81. android:id="@+id/mobileText"
  82. android:layout_width="wrap_content"
  83. android:layout_height="wrap_content"
  84. android:layout_alignBottom="@+id/mobile"
  85. android:layout_marginLeft="5dp"
  86. android:layout_toRightOf="@+id/mobile"
  87. android:text="46366664"
  88. android:textColor="@color/background_material_dark"
  89. android:textSize="12sp" />
  90.  
  91. <TextView
  92. android:id="@+id/opening"
  93. android:layout_width="wrap_content"
  94. android:layout_height="wrap_content"
  95. android:layout_alignParentLeft="true"
  96. android:layout_below="@+id/mobile"
  97. android:layout_marginTop="2dp"
  98. android:text="Opening Hours"
  99. android:textAppearance="?android:attr/textAppearanceMedium"
  100. android:textSize="12sp"
  101. android:textStyle="bold" />
  102.  
  103. <TextView
  104. android:id="@+id/montothuText"
  105. android:layout_width="wrap_content"
  106. android:layout_height="wrap_content"
  107. android:layout_alignParentLeft="true"
  108. android:layout_below="@+id/opening"
  109. android:layout_marginTop="2dp"
  110. android:text=" Monday to Thursday from. 7:30 to 16:00"
  111. android:textAppearance="?android:attr/textAppearanceMedium"
  112. android:textColor="@color/background_material_dark"
  113. android:textSize="12sp" />
  114.  
  115. <TextView
  116. android:id="@+id/friText"
  117. android:layout_width="wrap_content"
  118. android:layout_height="wrap_content"
  119. android:layout_alignParentLeft="true"
  120. android:layout_below="@+id/montothuText"
  121. android:layout_marginLeft="1dp"
  122. android:layout_marginTop="2dp"
  123. android:text="Friday from midnight. 7:30 to 12:30"
  124. android:textAppearance="?android:attr/textAppearanceMedium"
  125. android:textColor="@color/background_material_dark"
  126. android:textSize="12sp" />
  127.  
  128. <TextView
  129. android:id="@+id/outsideMobText"
  130. android:layout_width="wrap_content"
  131. android:layout_height="wrap_content"
  132. android:layout_alignLeft="@+id/friText"
  133. android:layout_below="@+id/friText"
  134. android:layout_marginTop="2dp"
  135. android:text="Mobile no. 24855852 can be used outside of office hours"
  136. android:textAppearance="?android:attr/textAppearanceMedium"
  137. android:textColor="@color/background_material_dark"
  138. android:textSize="12sp" />
  139. </RelativeLayout>
  140.  
  141. <LinearLayout
  142. android:id="@+id/bottomlayoutmaps"
  143. android:layout_width="match_parent"
  144. android:layout_height="fill_parent"
  145. android:layout_margin="5dp"
  146. android:orientation="vertical" >
  147.  
  148. <TextView
  149. android:id="@+id/textView1"
  150. android:layout_width="wrap_content"
  151. android:layout_height="wrap_content"
  152. android:text="Find Us"
  153. android:textAppearance="?android:attr/textAppearanceLarge"
  154. android:textColor="@color/black"
  155. android:textSize="20sp"
  156. android:textStyle="bold" />
  157.  
  158. <fragment
  159. android:id="@+id/mapFragment"
  160. android:layout_width="match_parent"
  161. android:layout_height="fill_parent"
  162. android:name="com.google.android.gms.maps.MapFragment" />
  163. </LinearLayout>
  164. </LinearLayout>
  165.  
  166. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement