fragment_main.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:id="@+id/layout_coordinator"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent">
  9. <android.support.v7.widget.RecyclerView
  10. android:id="@+id/recycler_view_main"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"/>
  13. <kr.co.zumo.app.lifeplus.view.screen.main.PageIndicator
  14. android:id="@+id/page_indicator"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"/>
  17. <LinearLayout
  18. android:id="@+id/layout_test_all"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:gravity="bottom"
  22. android:orientation="vertical"
  23. app:layout_constraintBottom_toBottomOf="parent">
  24. <ImageView
  25. android:id="@+id/image_toggle"
  26. android:layout_width="30dp"
  27. android:layout_height="30dp"
  28. android:layout_gravity="center"
  29. android:layout_marginStart="8dp"
  30. android:layout_marginEnd="8dp"
  31. app:srcCompat="@drawable/icon_arcordion_close_arrow"/>
  32. <LinearLayout
  33. android:id="@+id/layout_test"
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"
  36. android:background="@color/CFFFFFF"
  37. android:orientation="vertical"
  38. android:paddingBottom="8dp">
  39. <LinearLayout
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:gravity="center"
  43. android:orientation="horizontal"
  44. android:paddingStart="20dp"
  45. android:paddingTop="10dp"
  46. android:paddingEnd="20dp"
  47. android:paddingBottom="10dp"
  48. >
  49. <TextView
  50. android:id="@+id/text_member_status"
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. tools:text="Member status: inactive"/>
  54. <Space
  55. android:layout_width="0dp"
  56. android:layout_height="wrap_content"
  57. android:layout_weight="1"/>
  58. <TextView
  59. android:id="@+id/text_version"
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. tools:text="Version: v4.0.0"/>
  63. </LinearLayout>
  64. <LinearLayout
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:gravity="center"
  68. android:orientation="horizontal"
  69. android:paddingStart="20dp"
  70. android:paddingTop="10dp"
  71. android:paddingEnd="20dp"
  72. android:paddingBottom="10dp"
  73. >
  74. <Button
  75. android:id="@+id/button_set_account"
  76. style="@style/SignUpButton"
  77. android:layout_width="wrap_content"
  78. android:layout_height="wrap_content"
  79. android:text="Set Dummy Account"/>
  80. <Button
  81. android:id="@+id/button_7"
  82. android:padding="0dp"
  83. android:minWidth="50dp"
  84. android:layout_width="wrap_content"
  85. android:layout_height="wrap_content"
  86. android:text="7"/>
  87. <Space
  88. android:layout_width="0dp"
  89. android:layout_height="wrap_content"
  90. android:layout_weight="1"/>
  91. <Button
  92. android:id="@+id/button_clear"
  93. style="@style/SignUpButton"
  94. android:layout_width="wrap_content"
  95. android:layout_height="wrap_content"
  96. android:text="Clear Data"/>
  97. </LinearLayout>
  98. <LinearLayout
  99. android:layout_width="match_parent"
  100. android:layout_height="wrap_content"
  101. android:gravity="center"
  102. android:orientation="horizontal"
  103. android:paddingStart="20dp"
  104. android:paddingTop="10dp"
  105. android:paddingEnd="20dp"
  106. android:paddingBottom="10dp">
  107. <Button
  108. android:id="@+id/button_sign_up"
  109. style="@style/SignUpButton"
  110. android:layout_width="wrap_content"
  111. android:layout_height="wrap_content"
  112. android:text="Join"/>
  113. <Space
  114. android:layout_width="0dp"
  115. android:layout_height="wrap_content"
  116. android:layout_weight="1"/>
  117. <Button
  118. android:id="@+id/button_zumo"
  119. style="@style/SignUpButton"
  120. android:layout_width="wrap_content"
  121. android:layout_height="wrap_content"
  122. android:text="Set Zumo User"/>
  123. <Space
  124. android:layout_width="0dp"
  125. android:layout_height="wrap_content"
  126. android:layout_weight="1"/>
  127. <Button
  128. android:id="@+id/button_0000"
  129. style="@style/SignUpButton"
  130. android:layout_width="wrap_content"
  131. android:layout_height="wrap_content"
  132. android:text="0000"/>
  133. </LinearLayout>
  134. <LinearLayout
  135. android:layout_width="match_parent"
  136. android:layout_height="wrap_content"
  137. android:gravity="center"
  138. android:orientation="horizontal"
  139. android:paddingStart="20dp"
  140. android:paddingTop="10dp"
  141. android:paddingEnd="20dp"
  142. android:paddingBottom="10dp">
  143. <Button
  144. android:id="@+id/button_dev"
  145. style="@style/SignUpButton"
  146. android:layout_width="wrap_content"
  147. android:layout_height="wrap_content"
  148. android:text="Develop"/>
  149. <Space
  150. android:layout_width="0dp"
  151. android:layout_height="wrap_content"
  152. android:layout_weight="1"/>
  153. <Button
  154. android:id="@+id/button_cache"
  155. style="@style/SignUpButton"
  156. android:layout_width="wrap_content"
  157. android:layout_height="wrap_content"
  158. android:text="Clear Cache"/>
  159. <Space
  160. android:layout_width="0dp"
  161. android:layout_height="wrap_content"
  162. android:layout_weight="1"/>
  163. <Button
  164. android:id="@+id/button_product"
  165. style="@style/SignUpButton"
  166. android:layout_width="wrap_content"
  167. android:layout_height="wrap_content"
  168. android:text="Product"/>
  169. </LinearLayout>
  170. </LinearLayout>
  171. </LinearLayout>
  172. <android.support.constraint.ConstraintLayout
  173. android:id="@+id/container_navigation_bar"
  174. android:layout_width="match_parent"
  175. android:layout_height="@dimen/action_bar_height"
  176. android:background="@null">
  177. </android.support.constraint.ConstraintLayout>
  178. </android.support.constraint.ConstraintLayout>