带有 CollapsingToolbarLayout 的 Android RecyclerView 平滑滚动问题

Posted

技术标签:

【中文标题】带有 CollapsingToolbarLayout 的 Android RecyclerView 平滑滚动问题【英文标题】:Android RecyclerView with CollapsingToolbarLayout smooth scroll issue 【发布时间】:2016-07-31 17:03:25 【问题描述】:

我想使用CollapsingToolbarLayoutRecyclerView,比如Whatsapp

这是捕获的视频:https://sendvid.com/0oi2lxx5

所以当我向上滚动时它还可以,但是当我向下滚动时它就不流畅了。我想用RecyclerView平滑滚动。

这是我的profile_activity.xml

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_
    android:layout_
    android:fitsSystemWindows="true">
    <android.support.v7.widget.RecyclerView
        android:layout_
        android:id="@+id/profile_recyclerview"
        android:layout_
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:layout_below="@+id/profileactivity_appbar" />

    <android.support.design.widget.AppBarLayout
        android:id="@+id/profileactivity_appbar"
        android:layout_
        android:layout_
        android:fitsSystemWindows="true"
        android:theme="@style/AppTheme3.AppBarOverlay">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/profileactivity_collapsing_toolbar"
            android:layout_
            android:layout_
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp">

            <ImageView
                android:id="@+id/profileactivity_fullimage"
                android:layout_
                android:layout_
                android:scaleType="centerCrop"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax"
                app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed" />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_
                android:layout_
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:layout_collapseMode="pin" />

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

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




    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_
        android:layout_
        android:layout_margin="@dimen/fab_margin"
        app:layout_anchor="@id/profileactivity_appbar"
        app:layout_anchorGravity="bottom|right|end"
        app:backgroundTint="@color/ColorPrimary"
        android:src="@drawable/ic_create_white_48dp"/>

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

我正在使用:

compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.android.support:design:23.4.0'

我该如何解决这个问题?

【问题讨论】:

删除 ImageView 的app:layout_scrollFlags,看看是否能解决问题。我认为这些标志与app:layout_collapseMode 相矛盾 如果您尝试通过图像滚动它非常顺利,但我无法通过 recyclerview 滚动。我想你明白 【参考方案1】:

好吧,我将解释如何解决问题,现在我的布局非常流畅;

其实我不知道它是怎么解决的,但是;

我删除了所有android:fitsSystemWindows="true" 属性。 然后将app:layout_scrollFlags="scroll|enterAlways" 属性添加到CollapsingToolbarLayoutImageViewToolbar。 并在 xml 中移动了我的 AppBarLayout 之前的所有元素。

我的activity_profile.xml 喜欢:

<?xml version="1.0" encoding="utf-8"?>
<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/apk/res-auto"
    android:id="@+id/profileCoordinatorLayout"
    android:layout_
    android:layout_>

<ProgressBar android:indeterminate="true"
    android:layout_ android:layout_
    android:id="@+id/profile_activity_progress" 
    style="?android:attr/progressBarStyle"
    android:layout_gravity="center_vertical|center_horizontal"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true"
    android:visibility="visible" />

<ProgressBar android:indeterminate="true"
    android:layout_ android:layout_
    android:id="@+id/profile_activity_progress_edit" 
    style="?android:attr/progressBarStyle"
    android:layout_gravity="center_vertical|center_horizontal"
    android:visibility="gone" />


<include layout="@layout/content_profile_edit"/>


<android.support.v7.widget.RecyclerView
    android:layout_
    android:layout_
    android:id="@+id/profile_recyclerview"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_
    android:layout_
    android:visibility="gone"
    android:layout_margin="@dimen/fab_margin"
    app:layout_anchor="@+id/profileactivity_appbar"
    app:layout_anchorGravity="bottom|right|end"
    app:backgroundTint="@color/ColorPrimary"
    android:src="@drawable/ic_create_white_48dp"/>

<android.support.design.widget.AppBarLayout
    android:id="@+id/profileactivity_appbar"
    android:layout_
    android:layout_
    android:visibility="gone"
    android:theme="@style/AppTheme3.AppBarOverlay">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/profileactivity_collapsing_toolbar"
        android:layout_
        android:layout_
        app:layout_scrollFlags="scroll|enterAlways"
        app:statusBarScrim="@color/ColorPrimaryDark"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginStart="48dp"
        app:expandedTitleMarginEnd="64dp">

        <ImageView
            android:id="@+id/profileactivity_fullimage"
            android:layout_
            android:layout_
            android:scaleType="centerCrop"
            app:layout_scrollFlags="scroll|enterAlways"
            app:layout_collapseMode="parallax" />

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_
            android:layout_
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:layout_collapseMode="pin" />

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

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

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

还有content_profile_edit.xml 喜欢:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_
    android:layout_
    android:id="@+id/profile_edit_layout"
    android:layout_alignParentBottom="true"
    android:visibility="gone"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

<android.support.v4.widget.NestedScrollView
    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_
    android:id="@+id/profile_fragment_nested"
    android:layout_
    android:padding="10dp">

   <!-- other views -->

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

</RelativeLayout>

【讨论】:

如何固定工具栏和标签布局 @BincyBaby 我不太了解你,但你能查一下cheesesquare releases 这个方法很好用,但是如果我想固定工具栏和tablayout这个方法不行 @Bincy Baby 老兄,我愿意帮助你,但你必须提供一些代码,我必须看看你现在有什么。 @YasinKaçmaz 一些警告:如果将 FAB 放在 AppBarLayout 上方,将不会创建 layout_anchor id【参考方案2】:

我也遇到了 RecyclerView 和 CollapsingToolbarLayout 的问题(根本没有崩溃)。如果您还没有这样做,请尝试使用当前版本 23.4.+ 的 recyclerview、appcompat 和 design。

【讨论】:

我的问题不是崩溃问题。如果您在我通过触摸折叠图像滚动时观看视频,其超级平滑。但是当使用 recyclerview 滚动时,它不像折叠图像视图那样平滑。 您尝试过最新版本的 API 吗?可能是已修复的错误。我试过你的布局,一切正常。 我将所有这些更新到 23.4.0 版本。但这里也是同样的问题。 是的,我更新了 recyclerview 并更改了 scrollflags 。然后我的问题就没有了。谢谢【参考方案3】:
/**
google solve this issue in 26 api level .I spent my whole day finally I found this answer. For Demo You create  one android studio Scrolling Activity and do following changes upgrade all repository to 26 version and you will see this scrolling smoothly effect.
**/

apply plugin: 'com.android.application'

android 
    **compileSdkVersion 26
    buildToolsVersion "26.0.1"**
    defaultConfig 
        applicationId "com.example.sandeep.quantauser"
        minSdkVersion 19
        **targetSdkVersion 26**
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        
    


dependencies 
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', 
        exclude group: 'com.android.support', module: 'support-annotations'
    )
    compile files('libs/ksoap2-android-assembly-3.0.0-jar-with-dependencies.jar')
    compile files('libs/apache-jakarta-commons-net-1.4.1.jar')
    compile 'com.theartofdev.edmodo:android-image-cropper:2.4.+'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    testCompile 'junit:junit:4.12'
    compile files('libs/itextpdf-5.4.0.jar')
    **compile "com.android.support:support-core-utils:26.0.2"
    compile 'com.android.support:design:26.0.2'
    compile 'com.android.support:appcompat-v7:26.0.2'
    compile 'com.android.support:cardview-v7:26.0.2'**


**allprojects 
    repositories 
        jcenter()
        maven 
            url "https://maven.google.com"
        
    
**

【讨论】:

以上是关于带有 CollapsingToolbarLayout 的 Android RecyclerView 平滑滚动问题的主要内容,如果未能解决你的问题,请参考以下文章

带有和不带有聚合的 sql 查询

如何翻转正面带有标签而背面带有另一个标签的视图 - 参见图片

CakePHP 如何处理带有/不带有 'id' 字段的 HABTM 表?

带有滚动的 Div 和带有绝对位置的内容

带有 RecyclerView 的 DialogFragment 比带有 Recyclerview 的 Fragment 慢

访问控制允许带有和不带有 www 的来源