NestedScrollView 中的 RecyclerView 导致加载缓慢和/或崩溃

Isa*_*rez 5 android android-view android-recyclerview android-nestedscrollview

我正在使用 RecyclerView,它将用于加载潜在的许多图像,我希望在 RecyclerView 上方有一个操作栏,如下所示:

在此处输入图片说明

但我也希望操作栏的顶部只有灰色背景。如果用户滚动,它应该像这样完全透明:

在此处输入图片说明

通过使用它作为我的布局(有一个主要问题),我已经完成了我想要的:

fragment_recycler_gallery.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

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

    <!-- Gray bar at top -->
    <View
        android:id="@+id/gray_bar"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@null" />

    <android.support.v7.widget.RecyclerView 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:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
    </LinearLayout>
</android.support.v4.widget.NestedScrollView>
Run Code Online (Sandbox Code Playgroud)

NestedScrollView 是让我的整个片段滚动而不仅仅是 RecyclerView 的关键,但它使我的应用程序在加载大量图像(500+)时变慢或无响应。有没有更好的方法来创建我正在寻找的东西?我试过寻找解决方案,但我能找到的只是“不要在nestedScrollViews中使用recyclerviews”,而没有提供任何替代解决方案。

如果这也很重要,我正在使用 Glide 将图像加载到每个 ImageView(在 recyclerview 内)中。

而且我已经在我的 RecyclerView 上使用了它:

mAlbumRecyclerView.setNestedScrollingEnabled(false);
Run Code Online (Sandbox Code Playgroud)

Ben*_* P. 5

每当您wrap_content在 RecyclerView 上使用时,您都会遇到性能问题。使用完全会破坏从回收wrap_content视图中获得的性能改进。那么问题是如何在不使用.wrap_content

您可以做的一件事是使用 aFrameLayout将 a 覆盖Toolbar在 的顶部RecyclerView,然后在 上使用填充RecyclerView(与 结合android:clipToPadding="false")以使内容看起来从操作栏下方开始。只要您的工具栏具有半透明的背景色,当您滚动时,您的 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.support.v7.widget.RecyclerView
        android:id="@+id/recycler"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingTop="?attr/actionBarSize"
        android:clipToPadding="false"
        app:layoutManager="android.support.v7.widget.LinearLayoutManager"
        tools:listitem="@layout/itemview"/>

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="#1111"
        app:title="Hello world"/>

</FrameLayout>
Run Code Online (Sandbox Code Playgroud)