Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.58 KB | None | 0 0
  1.  
  2. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:id="@+id/main_content"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:fitsSystemWindows="true">
  8.  
  9. <android.support.v4.widget.NestedScrollView
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  13.  
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. android:orientation="vertical"
  18. android:paddingTop="24dp">
  19.  
  20. <android.support.v7.widget.CardView
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:layout_margin="@dimen/card_margin">
  24.  
  25. <LinearLayout
  26. style="@style/Widget.CardContent"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content">
  29.  
  30. <TextView
  31. android:id="@+id/tv_peqAlmoco"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:text="Pequeno-Almoço"
  35. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  36.  
  37. </LinearLayout>
  38.  
  39. </android.support.v7.widget.CardView>
  40.  
  41. <android.support.v7.widget.CardView
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content"
  44. android:layout_marginBottom="@dimen/card_margin"
  45. android:layout_marginLeft="@dimen/card_margin"
  46. android:layout_marginRight="@dimen/card_margin">
  47.  
  48. <LinearLayout
  49. style="@style/Widget.CardContent"
  50. android:layout_width="match_parent"
  51. android:layout_height="wrap_content">
  52.  
  53. <TextView
  54. android:id="@+id/tv_lancheManha"
  55. android:layout_width="match_parent"
  56. android:layout_height="wrap_content"
  57. android:text="Lanche da Manhã"
  58. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  59.  
  60. </LinearLayout>
  61.  
  62. </android.support.v7.widget.CardView>
  63.  
  64. <android.support.v7.widget.CardView
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:layout_marginBottom="@dimen/card_margin"
  68. android:layout_marginLeft="@dimen/card_margin"
  69. android:layout_marginRight="@dimen/card_margin">
  70.  
  71. <LinearLayout
  72. style="@style/Widget.CardContent"
  73. android:layout_width="match_parent"
  74. android:layout_height="wrap_content">
  75.  
  76. <TextView
  77. android:id="@+id/tv_almoco"
  78. android:layout_width="match_parent"
  79. android:layout_height="wrap_content"
  80. android:text="Almoço"
  81. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  82.  
  83. </LinearLayout>
  84.  
  85. </android.support.v7.widget.CardView>
  86.  
  87. <android.support.v7.widget.CardView
  88. android:layout_width="match_parent"
  89. android:layout_height="wrap_content"
  90. android:layout_marginBottom="@dimen/card_margin"
  91. android:layout_marginLeft="@dimen/card_margin"
  92. android:layout_marginRight="@dimen/card_margin">
  93.  
  94. <LinearLayout
  95. style="@style/Widget.CardContent"
  96. android:layout_width="match_parent"
  97. android:layout_height="wrap_content">
  98.  
  99. <TextView
  100. android:id="@+id/tv_lancheTarde"
  101. android:layout_width="match_parent"
  102. android:layout_height="wrap_content"
  103. android:text="Lanche da Tarde"
  104. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  105.  
  106. </LinearLayout>
  107.  
  108. </android.support.v7.widget.CardView>
  109.  
  110. <android.support.v7.widget.CardView
  111. android:layout_width="match_parent"
  112. android:layout_height="wrap_content"
  113. android:layout_marginBottom="@dimen/card_margin"
  114. android:layout_marginLeft="@dimen/card_margin"
  115. android:layout_marginRight="@dimen/card_margin">
  116.  
  117. <LinearLayout
  118. style="@style/Widget.CardContent"
  119. android:layout_width="match_parent"
  120. android:layout_height="wrap_content">
  121.  
  122. <TextView
  123. android:id="@+id/tv_jantar"
  124. android:layout_width="match_parent"
  125. android:layout_height="wrap_content"
  126. android:text="Jantar"
  127. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  128.  
  129. </LinearLayout>
  130.  
  131. </android.support.v7.widget.CardView>
  132.  
  133. <android.support.v7.widget.CardView
  134. android:layout_width="match_parent"
  135. android:layout_height="wrap_content"
  136. android:layout_marginBottom="@dimen/card_margin"
  137. android:layout_marginLeft="@dimen/card_margin"
  138. android:layout_marginRight="@dimen/card_margin">
  139.  
  140. <LinearLayout
  141. style="@style/Widget.CardContent"
  142. android:layout_width="match_parent"
  143. android:layout_height="wrap_content">
  144.  
  145. <TextView
  146. android:id="@+id/tv_lancheNoite"
  147. android:layout_width="match_parent"
  148. android:layout_height="wrap_content"
  149. android:text="Lanche da Noite"
  150. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  151.  
  152. </LinearLayout>
  153.  
  154. </android.support.v7.widget.CardView>
  155.  
  156. </LinearLayout>
  157.  
  158. </android.support.v4.widget.NestedScrollView>
  159.  
  160. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement