我正在使用以下布局,但无法让 RecyclerView 滚动(使用此布局时它在屏幕上不可见,滚动停止直到 NestedScrollView)。
我可以向上滚动到 NestedScrollView 和 CollapsingToolbar 以折叠,如果我删除整个 NestedScrollView 然后我让 RecyclerView 滚动。
如果我在没有 NestedScrollView 的情况下保持线性布局,则只有 RecyclerView 滚动,其余布局是固定的。
我还添加app:layout_behavior="@string/appbar_scrolling_view_behavior"
了 RecyclerView,并将 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>