1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-09-27 18:29:37 +02:00
dandelion/app/src/main/res/layout/recycler_list__fragment.xml

31 lines
1.3 KiB
XML
Raw Normal View History

2016-09-30 23:15:10 +02:00
<?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"
2016-09-30 23:15:10 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light">
2016-09-30 23:15:10 +02:00
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
2016-09-30 23:15:10 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2016-09-30 23:15:10 +02:00
<android.support.v7.widget.RecyclerView
android:id="@+id/fragment_list__recycler_view"
2016-09-30 23:15:10 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
2016-09-30 23:15:10 +02:00
<!-- Offset -->
<android.support.v4.widget.Space
android:id="@+id/spacer"
android:layout_width="match_parent"
android:layout_height="@dimen/bottom_toolbar_height" />
2016-09-30 23:15:10 +02:00
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</RelativeLayout>