Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. xmlns:app="http://schemas.android.com/apk/res-auto">
  5.  
  6. <data/>
  7.  
  8. <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:id="@+id/swipe_refresh"
  12. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  13.  
  14. <androidx.core.widget.NestedScrollView
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content">
  17.  
  18. <androidx.constraintlayout.widget.ConstraintLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content">
  21.  
  22. <HorizontalScrollView
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_marginTop="19dp"
  26. android:scrollbars="none"
  27. android:visibility="gone"
  28. android:id="@+id/horizontal_scroll_view"
  29. app:layout_constraintTop_toTopOf="parent">
  30.  
  31. <com.google.android.material.chip.ChipGroup
  32. style="@style/DefaultChipGroup"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. app:singleLine="true"
  36. android:id="@+id/chip_group">
  37.  
  38. <com.google.android.material.chip.Chip
  39. style="@style/MainFilterChip"
  40. android:text="Осознанность"
  41. app:chipBackgroundColor="#0093FC"/>
  42.  
  43. <!--<com.google.android.material.chip.Chip
  44. style="@style/MainFilterChip"
  45. android:text="Начало"
  46. app:chipBackgroundColor="#4CD964"/>
  47.  
  48. <com.google.android.material.chip.Chip
  49. style="@style/MainFilterChip"
  50. android:text="Становление"
  51. app:chipBackgroundColor="#FC0079"/>
  52.  
  53. <com.google.android.material.chip.Chip
  54. style="@style/MainFilterChip"
  55. android:text="Сила воли"
  56. app:chipBackgroundColor="#CED94C"/>-->
  57.  
  58. </com.google.android.material.chip.ChipGroup>
  59.  
  60. </HorizontalScrollView>
  61.  
  62. <CheckBox
  63. style="@style/FirstCheckbox"
  64. android:id="@+id/actual_check_box"
  65. android:layout_marginLeft="16dp"
  66. android:layout_marginRight="16dp"
  67. android:layout_marginTop="16dp"
  68. android:text="@string/visible_actual"
  69. app:layout_constraintLeft_toLeftOf="parent"
  70. app:layout_constraintTop_toBottomOf="@id/horizontal_scroll_view"/>
  71.  
  72. <com.airbnb.epoxy.EpoxyRecyclerView
  73. android:layout_width="match_parent"
  74. android:layout_height="0dp"
  75. android:id="@+id/rv_streams"
  76. android:layout_marginTop="5dp"
  77. android:paddingBottom="16dp"
  78. android:clipToPadding="false"
  79. app:layout_constraintTop_toBottomOf="@id/actual_check_box"
  80. app:layout_constraintBottom_toBottomOf="parent"/>
  81.  
  82. </androidx.constraintlayout.widget.ConstraintLayout>
  83.  
  84. </androidx.core.widget.NestedScrollView>
  85.  
  86. </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
  87.  
  88. </layout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement