|
@@ -1,18 +1,24 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<android.support.constraint.ConstraintLayout
|
|
|
|
|
|
|
+<android.support.v4.widget.NestedScrollView
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
- <android.support.v7.widget.RecyclerView
|
|
|
|
|
- android:id="@+id/recycler_view_event_participation"
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/layout_container"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
- app:layout_constraintTop_toTopOf="parent"/>
|
|
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
|
|
-</android.support.constraint.ConstraintLayout>
|
|
|
|
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
|
|
+ android:id="@+id/recycler_view_event_participation"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+</android.support.v4.widget.NestedScrollView>
|