2018-02-27 15:13:23 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-06-01 14:05:16 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-02-27 15:13:23 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:background="?attr/bg_color">
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/scroll_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
2018-03-15 10:56:47 +01:00
|
|
|
android:id="@+id/scrollable_items_container"
|
2018-02-27 15:13:23 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-06-01 14:05:16 +02:00
|
|
|
android:orientation="vertical" />
|
2018-02-27 15:13:23 +01:00
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
2018-03-15 10:56:47 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/non_scrollable_items_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2019-06-01 14:05:16 +02:00
|
|
|
android:visibility="gone" />
|
2018-02-27 15:13:23 +01:00
|
|
|
|
2019-12-23 15:21:24 +01:00
|
|
|
<include layout="@layout/bottom_buttons" />
|
2018-02-27 15:13:23 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|