Я планирую a RecyclerView
в NestedScrollView
, и я хочу сделать прокрутку NestedScrollView
с RecyclerView
, но это происходит только тогда, когда recyclerView достигает конца, ниже мой код макета:
<android.support.v4.widget.NestedScrollView
android:id="@+id/lists_frame"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
tools:context="com.example.niuky.design.MainActivity4"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<View
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="256dp"
android:background="@color/material_blue_grey_800"
/>
<View
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/material_blue_grey_950"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minHeight="700dp"
/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
Это мой просмотр во время выполнения: