dandelion/app/src/main/res/layout/recycler_list__fragment.xml

32 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/fragment_list__root"
android:background="@android:color/background_light">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/fragment_list__recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<!-- Offset -->
<android.support.v4.widget.Space
android:id="@+id/fragment_list__spacer"
android:layout_width="match_parent"
android:layout_height="@dimen/bottom_toolbar_height" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</RelativeLayout>