RecyclerView在CoordinatorLayout中滚动不正常。

6

实际上我有两个问题

1. 滚动不正常,有时我们在特定方向上滚动很小的距离并松开触摸后,它会快速滚动到该特定方向的末尾(即向上或向下)。

2. 我希望自定义工具栏的标题只在折叠时显示,在展开时应隐藏标题。

以下是XML代码

<android.support.design.widget.CoordinatorLayout
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
>

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="256dp"
    android:id="@+id/appBarLayout"
    >

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsingToolbarLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        app:contentScrim="?attr/colorPrimary"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:clickable="true"
        android:foreground="?android:attr/selectableItemBackground"
        >

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/imageone"
            app:layout_collapseMode="parallax"
            app:layout_collapseParallaxMultiplier="0.7"
            android:scaleType="fitCenter"
            />

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar22"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:layout_collapseMode="pin"
            />

    </android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/recyclerview1"
    android:layout_centerHorizontal="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:layout_marginTop="-30dp"
    android:layout_marginLeft="3dp"
    android:layout_marginRight="3dp"
    />

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fabBtn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_anchor="@id/appBarLayout"
    app:layout_anchorGravity="bottom|right|end"
    android:src="@drawable/ic_favourite"
    android:layout_marginBottom="@dimen/fab_margin_bottom"
    android:layout_marginRight="@dimen/fab_margin_right"

    app:fabSize="normal" />

enter image description here


活动(片段)代码在哪里? - iamthevoid
你找到解决方案了吗?我也遇到了类似的问题。 - Gaurav
@Gaurav 不是的。当我遇到这个问题时,我已经停止使用协调布局和RecyclerView了。今天我再次尝试了一下更新后的SDK,但仍然存在同样的问题。相反,我现在使用ObservableScrollView - Avtar Singh
谢谢。我会尝试实现这个。 - Gaurav
2个回答

1
除了Kuldeep给出的答案之外,第一个问题的解决方案如下:
为了消除RecyclerView的不良滚动行为,只需在RecyclerView上设置此属性:
android:nestedScrollingEnabled="false"

或者您可以动态地使用以下代码:
recyclerView.setNestedScrollingEnabled(false);

注意:如果您在CoordinatorLayout中使用FloatActionButton,当您的recyclerview滚动时,它将不执行隐藏动画。

0

// 当工具栏展开和折叠时,隐藏和显示标题

appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
       boolean isShow = false;
       int scrollRange = -1;

       @Override
       public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
           if (scrollRange == -1) {
               scrollRange = appBarLayout.getTotalScrollRange();
           }
           if (scrollRange + verticalOffset == 0) {
                //set your title when you scroll up
               collapsingToolbar.setTitle(title);
               isShow = true;
           } else if (isShow) {
               //title will disappear when you scroll down 
               collapsingToolbar.setTitle(" ");
               isShow = false;
           }
       }
   });

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接