Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  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:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:id="@+id/container"
  7. android:orientation="vertical"
  8. android:fitsSystemWindows="true"
  9. android:backgroundTint="@android:color/white">
  10. <android.support.design.widget.AppBarLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:elevation="0dp">
  14. <include
  15. layout="@layout/tool_bar" />
  16. </android.support.design.widget.AppBarLayout>
  17. <SegurosSura.Droid.Utilities.StateLayout.View.StateLayout
  18. android:id="@+id/stateLayout"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  22. <android.support.v4.widget.NestedScrollView
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:fillViewport="true"
  26. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  27. <LinearLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:orientation="vertical"
  31. android:layout_margin="@dimen/container_driveBetter">
  32. <include
  33. layout="@layout/drive_better_animation_include" />
  34. <TextView
  35. android:id="@+id/score_title_text"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:gravity="center_horizontal"
  39. android:layout_marginTop="@dimen/margin_top_score_title"
  40. android:textColor="@android:color/black"
  41. android:textAppearance="@style/TextAppearance.AppCompat.Light.SearchResult.Subtitle" />
  42. <TextView
  43. android:id="@+id/indicators_title"
  44. android:layout_width="match_parent"
  45. android:layout_height="wrap_content"
  46. android:layout_marginTop="@dimen/margin_top_indicator_title"
  47. android:textStyle="bold"
  48. android:textColor="@color/color_primary"
  49. android:textAppearance="@style/TextAppearance.AppCompat.Light.SearchResult.Subtitle" />
  50. <android.support.v7.widget.RecyclerView
  51. android:id="@+id/indicators_recyclerview"
  52. android:layout_width="match_parent"
  53. android:layout_height="wrap_content"
  54. android:layout_marginTop="@dimen/margin_top_indicator_recyclers" />
  55. <TextView
  56. android:id="@+id/behavior_title"
  57. android:layout_width="match_parent"
  58. android:layout_height="wrap_content"
  59. android:layout_marginTop="@dimen/margin_top_behavior_title"
  60. android:textStyle="bold"
  61. android:textColor="@color/color_primary"
  62. android:textAppearance="@style/TextAppearance.AppCompat.Light.SearchResult.Subtitle" />
  63. <android.support.v7.widget.RecyclerView
  64. android:id="@+id/behavior_recyclerview"
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:layout_marginTop="@dimen/margin_top_behavior_recyclerview" />
  68. <TextView
  69. android:id="@+id/awards_title"
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:layout_marginTop="@dimen/margin_top_awards_title"
  73. android:textStyle="bold"
  74. android:textColor="@color/color_primary"
  75. android:textAppearance="@style/TextAppearance.AppCompat.Light.SearchResult.Subtitle" />
  76. <TextView
  77. android:id="@+id/description_awards"
  78. android:layout_width="match_parent"
  79. android:layout_height="wrap_content"
  80. android:layout_marginTop="@dimen/margin_top_awards_description" />
  81. <View
  82. android:id="@+id/awards_margin_view"
  83. android:layout_width="match_parent"
  84. android:layout_height="@dimen/indicator_text_view_height" />
  85. <android.support.v7.widget.RecyclerView
  86. android:id="@+id/awards_recyclerView"
  87. android:layout_width="match_parent"
  88. android:layout_height="wrap_content"
  89. android:layout_marginTop="@dimen/margin_top_awards_description"/>
  90. </LinearLayout>
  91. </android.support.v4.widget.NestedScrollView>
  92. </SegurosSura.Droid.Utilities.StateLayout.View.StateLayout>
  93. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement