0

我正在使用以下布局,但无法让 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>
4

2 回答 2

1

我通过嵌套RecyclerView在里面NestedScrollView并更新支持库来解决它recyclerview

我正在使用com.android.support:recyclerview-v7:23.0.1

截至 Android 支持库,修订版 23.2.0(2016 年 2 月) (请参阅此处的修订存档)

v7 RecyclerView 库的更改:

RecyclerView 现在有一个称为 AutoMeasure 的可选功能,它允许 RecyclerView.LayoutManager 轻松包装内容或处理由 RecyclerView 的父级提供的各种测量规范。它支持 RecyclerView 的所有现有动画功能。

如果您有自定义 RecyclerView.LayoutManager,请调用 setAutoMeasureEnabled(true) 以开始使用新的 AutoMeasure API。所有内置 RecyclerView.LayoutManager 对象默认启用自动测量。

RecyclerView.LayoutManager 不再忽略一些 RecyclerView.LayoutParams 设置,例如滚动方向的 MATCH_PARENT。

注意:这些取消的限制可能会导致您的布局出现意外行为。确保指定正确的布局 参数。

使用com.android.support:recyclerview-v7:23.4.0解决嵌套recyclerview不出现在嵌套滚动视图中的问题

于 2016-10-24T08:48:15.777 回答
1

好的,如果你想在 xml 文件RecyclerViewNestedScrollView添加这一行到 RecyclerView 中app:layoutManager="LinearLayoutManager"

例子

<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/your_recyclerview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layoutManager="LinearLayoutManager"/>

    </android.support.v4.widget.NestedScrollView>

然后在SomeActivity.java您填充的文件中RecyclerView放置此行recyclerView.setNestedScrollingEnabled(false);,然后再将适配器设置为RecyclerView.

例子

RecyclerView recyclerView=(RecyclerView)findViewById(R.id.your_recyclerview);
recyclerView.setNestedScrollingEnabled(false);
recyclerView.setAdapter(yourAdapter);
于 2016-10-21T13:05:20.373 回答