具有固定高度的Recyclerview不会在嵌套滚动视图中滚动

时间:2019-01-03 09:26:59

标签: android android-layout android-recyclerview android-nestedscrollview

我有一个RecyclerView,它在NestedScrollView内的高度是固定的,里面还有一些其他布局。回收者视图将不会滚动,但是如果我将其高度设置为wrap_content,它会滚动正常。

我无法让RecyclerView使用wrap_content,因为EndlessRecyclerViewScrollListener存在一个问题,即即使服务器从服务器上继续加载数据并将其推送到我的Adapter中,用户根本没有向下滚动。

大多数建议将嵌套滚动设置为false,但是如果我禁用嵌套滚动,则NestedScrollView不允许我滚动RecyclerView。但是,如果我启用了嵌套滚动功能,除非从RecyclerView外部开始触摸,否则滚动视图不会滚动。

我的布局代码:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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:background="@color/scoop_background"
tools:context=".module.scoop.timeline.ScoopTimelineFragment">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clickable="true"
    android:orientation="vertical">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="92dp">

        <ImageView
            android:id="@+id/ivTimelineBanner"
            android:layout_width="match_parent"
            android:layout_height="92dp"
            android:layout_margin="0dp"
            android:clickable="true"
            android:padding="0dp"
            android:scaleType="fitXY"
            android:src="@drawable/banner_placeholder" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:gravity="center_vertical"
                android:orientation="vertical"
                android:paddingLeft="92dp">

                <TextView
                    android:id="@+id/tvGroupMembership"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textColor="@android:color/white"
                    android:textSize="@dimen/text_content" />

                <TextView
                    android:id="@+id/tvGroupName"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textColor="@android:color/white"
                    android:textSize="@dimen/text_header"
                    android:textStyle="bold" />

                <TextView
                    android:id="@+id/tvGroupMemberCount"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textColor="@android:color/white"
                    android:textSize="@dimen/text_content" />

            </LinearLayout>

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_gravity="center"
                android:background="@null"
                android:paddingStart="@dimen/divider_normal"
                android:paddingEnd="@dimen/divider_normal"
                android:src="@drawable/ic_chevron_right_white_24dp" />

        </LinearLayout>

    </FrameLayout>

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipeRefreshLayoutTimeline"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v4.widget.NestedScrollView
            android:id="@+id/nestedScrollView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fillViewport="true"
            android:overScrollMode="never"
            android:scrollbars="none">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:paddingTop="4dp">

                <android.support.v7.widget.CardView
                    android:id="@+id/cvCreateScoop"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/divider_small"
                    android:layout_marginRight="@dimen/divider_small"
                    android:clickable="true"
                    android:focusable="true"
                    android:foreground="?attr/selectableItemBackground"
                    app:cardCornerRadius="8dp"
                    app:cardUseCompatPadding="true">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:orientation="horizontal"
                        android:padding="@dimen/divider_normal">

                        <ImageView
                            android:layout_width="32dp"
                            android:layout_height="32dp"
                            android:src="@drawable/svg_nav_create_scoop" />

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:gravity="center_vertical"
                            android:paddingStart="@dimen/divider_normal"
                            android:text="What's on your mind?"
                            android:textSize="@dimen/text_content" />

                        <ImageView
                            android:layout_width="32dp"
                            android:layout_height="32dp"
                            android:padding="@dimen/divider_xsmall"
                            android:src="@drawable/svg_insert_image" />
                    </LinearLayout>

                </android.support.v7.widget.CardView>

                <RelativeLayout
                    android:id="@+id/relativeLayout"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">

                    <android.support.v7.widget.RecyclerView
                        android:id="@+id/rv"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:clipToPadding="false"
                        android:overScrollMode="never"
                        android:nestedScrollingEnabled="false"
                        android:paddingLeft="8dp"
                        android:paddingRight="8dp"
                        android:paddingBottom="4dp">

                    </android.support.v7.widget.RecyclerView>


                </RelativeLayout>

            </LinearLayout>

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

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

</LinearLayout>

我需要修改什么,以便RecyclerView可以滚动,但是整个NestedScrollView也会随之滚动,以便用户向上滚动(从上到下滑动) ,RecyclerView将与NestedScrollView一起滚动,这将使布局在RecyclerView上方。

要可视化:

我要实现的布局类似于Facebook的布局。向下滚动时,时间轴将向下滚动,并且顶部带有Messenger图标的搜索栏也将滚动,以便在向下滚动时隐藏。向上滚动时,时间轴将向上滚动,并再次显示搜索栏。

1 个答案:

答案 0 :(得分:0)

我决定以不同的方式进行操作,因为我无法使用此方法解决它。取而代之的是,我使用了CollapsingToolbar并将其他布局放入其中,然后删除了它的背景,因此它看起来不像工具栏,并且无缝地实现了我想要的功能,只是使用了不同的实现。