次のレイアウトを使用していますが、RecyclerView をスクロールできません (このレイアウトを使用すると画面に表示されず、NestedScrollView までスクロールが停止します)。
NestedScrollView と CollapsingToolbar までスクロールして折りたたむことができます。NestedScrollView 全体を削除すると、RecyclerView がスクロールします。
NestedScrollView を使用せずに線形レイアウトを維持すると、RecyclerView のみがスクロールし、残りのレイアウトは固定されます。
RecyclerView にも追加app:layout_behavior="@string/appbar_scrolling_view_behavior"
し、RecyclerView を NestedScrollView から除外しました。
NestedScrollView 内に RecyclerView を追加すると、RecyclerView が表示されません。
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.MainFragment">
<!-- android.support.design.widget.AppBarLayout here
with a android.support.design.widget.CollapsingToolbarLayout
-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp">
<!-- more layout code here -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/large_text"/>
</RelativeLayout>
<View
android:id="@+id/separator"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorAccent" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerViewListOfData"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:listitem="@layout/recycler_view"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</LinearLayout>