当前位置: 首页 > 知识库问答 >
问题:

nestedscrollview内部的recyclerview加载缓慢

潘翊歌
2023-03-14

我在我的嵌套scrollview中有recyckerview,当我的recrenegerview加载时,我对滚动没有问题,它非常平滑,但它的加载速度非常慢(它不是关于我的数据或网络)慢行是recyclerview.adapter = MyAdapter()

当我从nestedscrollview(根元素的第一个子元素)中移动回收器视图时,它真的很快。这是我的xml

对于这个xml,它阻塞ui 3-4秒并加载它,但是如果我将recyclerview放在nestedscrollview之外,它会在几毫秒内加载,不会被注意到。

我需要nestedscrollview中的recyclerview。

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools" 
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:focusableInTouchMode="true"
        android:background="#f7f7f7"
        android:orientation="vertical">
        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:titleTextAppearance="@style/ToolbarExpandedTextAppearance"
            app:layout_collapseMode="pin"
            android:background="@color/colorPrimary">
            <ImageButton
                android:layout_width="?attr/actionBarSize"
                android:layout_height="?attr/actionBarSize"
                android:id="@+id/right_button"
                android:src="@drawable/ic_top_question"
                android:layout_gravity="end|top"
                android:contentDescription="@string/placeholder_right_button"
                android:background="?attr/selectableItemBackground"/>
        </androidx.appcompat.widget.Toolbar>

        <androidx.core.widget.NestedScrollView
            android:id="@+id/nestedScrollView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fillViewport="true"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:orientation="vertical">

            <androidx.constraintlayout.widget.ConstraintLayout
                android:layout_width="match_parent"
                android:orientation="vertical"
                android:layout_height="match_parent">

                <androidx.constraintlayout.widget.ConstraintLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@color/colorPrimary" android:id="@+id/constraintLayout">

                    <TextView
                        android:text="Give £8, Get £8"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:textColor="@color/white"
                        android:textSize="@dimen/field_header_title_text"
                        android:fontFamily="@font/apercu_medium"
                        android:id="@+id/textView2" android:layout_marginTop="8dp"
                        android:layout_marginStart="16dp"
                        app:layout_constraintStart_toStartOf="parent"
                        app:layout_constraintTop_toTopOf="parent"/>
                    <TextView
                        android:text="Give your friends £8 with your code and get £8 for every friend that uses it!"
                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
                        android:fontFamily="@font/apercu"
                        android:textSize="@dimen/discover_message_text_size"
                        android:textColor="@color/text_white"
                        android:lineSpacingExtra="10dp"
                        android:id="@+id/textView3" android:layout_marginTop="16dp"
                        app:layout_constraintTop_toBottomOf="@+id/textView2"
                        app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent"
                        android:layout_marginEnd="32dp" android:layout_marginStart="16dp"/>
                    <LinearLayout
                        android:orientation="horizontal"
                        android:layout_width="0dp"
                        android:layout_height="80dp"
                        app:layout_constraintStart_toStartOf="parent" android:layout_marginStart="8dp"
                        app:layout_constraintEnd_toEndOf="parent" android:layout_marginEnd="8dp"
                        android:layout_marginTop="24dp" app:layout_constraintTop_toBottomOf="@+id/textView3"
                        android:id="@+id/linearLayout" android:layout_marginBottom="8dp"
                        app:layout_constraintBottom_toBottomOf="parent">
                        <LinearLayout
                            android:orientation="vertical"
                            android:layout_width="0dp"
                            android:layout_weight="1"
                            android:layout_height="match_parent"
                            android:gravity="center"
                            android:layout_margin="8dp"
                            android:background="@drawable/white_radius">
                            <TextView
                                android:layout_width="match_parent"
                                android:fontFamily="@font/apercu_bold"
                                android:textColor="@color/warm_grey"
                                android:layout_height="wrap_content"
                                android:gravity="center"
                                android:textSize="24sp"
                                android:id="@+id/txt_pending_invites"/>
                            <TextView
                                android:text="Pending invites"
                                android:layout_width="match_parent"
                                android:fontFamily="@font/apercu"
                                android:lineSpacingExtra="10dp"
                                android:textColor="@color/greyish"
                                android:layout_height="wrap_content" android:id="@+id/textsView5"
                                android:gravity="center"/>
                        </LinearLayout>

                        <LinearLayout
                            android:orientation="vertical"
                            android:layout_width="0dp"
                            android:layout_weight="1"
                            android:gravity="center"
                            android:layout_margin="8dp"
                            android:layout_height="match_parent"
                            android:background="@drawable/white_radius">
                            <TextView
                                android:layout_width="match_parent"
                                android:fontFamily="@font/apercu_bold"
                                android:textColor="@color/warm_grey"
                                android:layout_height="wrap_content"
                                android:gravity="center"
                                android:textSize="24sp"
                                android:id="@+id/txt_earned"/>
                            <TextView
                                android:text="Total earned to date"
                                android:layout_width="match_parent"
                                android:fontFamily="@font/apercu"
                                android:lineSpacingExtra="10dp"
                                android:textColor="@color/greyish"
                                android:layout_height="wrap_content" android:id="@+id/textView5"
                                android:gravity="center"/>
                        </LinearLayout>

                    </LinearLayout>

                </androidx.constraintlayout.widget.ConstraintLayout>

                <androidx.constraintlayout.widget.ConstraintLayout
                        android:layout_width="match_parent"
                        android:layout_height="100dp"
                        tools:layout_editor_absoluteX="16dp" android:layout_marginTop="8dp"
                        app:layout_constraintTop_toBottomOf="@+id/constraintLayout"
                        android:id="@+id/constraintLayout3">

                    <androidx.constraintlayout.widget.ConstraintLayout
                            android:layout_width="0dp"
                            android:background="@drawable/edittextround"
                            android:layout_height="50dp" app:layout_constraintBottom_toBottomOf="parent"
                            android:layout_marginBottom="8dp" app:layout_constraintStart_toStartOf="parent"
                            android:layout_marginTop="8dp" app:layout_constraintTop_toTopOf="parent"
                            app:layout_constraintEnd_toEndOf="parent" android:layout_marginStart="15dp"
                            android:layout_marginEnd="15dp" android:id="@+id/constraintLayout2">
                        <TextView
                            android:id="@+id/txt_promo_code"
                            android:layout_width="0dp"
                            android:layout_height="wrap_content"
                            android:maxLines="1"
                            android:textSize="16sp"
                            android:text=""
                            android:textColor="@color/evergreen"
                            android:background="@android:color/transparent" android:layout_marginBottom="8dp"
                            app:layout_constraintBottom_toBottomOf="parent" android:layout_marginTop="8dp"
                            app:layout_constraintTop_toTopOf="parent"
                            app:layout_constraintStart_toStartOf="parent" android:layout_marginStart="20dp"
                            app:layout_constraintEnd_toStartOf="@+id/invite_button"/>
                        <Button
                            android:text="Share"
                            android:layout_width="wrap_content"
                            android:background="@drawable/form_button_radius"
                            android:textAppearance="@style/BottomButtonAppearance"
                            android:layout_height="32dp"
                            android:id="@+id/invite_button"
                            app:layout_constraintEnd_toEndOf="parent"
                            android:layout_marginEnd="8dp" android:layout_marginBottom="0dp"
                            app:layout_constraintBottom_toBottomOf="parent" android:layout_marginTop="0dp"
                            app:layout_constraintTop_toTopOf="parent"/>

                    </androidx.constraintlayout.widget.ConstraintLayout>

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:background="?android:colorBackground"
                        android:includeFontPadding="false"
                        android:paddingLeft="5dp"
                        android:paddingRight="5dp"
                        android:textSize="13sp"
                        android:text="Share Code"
                        android:textColor="@color/warm_grey"
                        android:fontFamily="@font/apercu"
                        android:textAppearance="@android:style/TextAppearance.Medium"
                        app:layout_constraintEnd_toEndOf="@+id/constraintLayout2"
                        app:layout_constraintStart_toStartOf="@+id/constraintLayout2"
                        app:layout_constraintHorizontal_bias="0.05" android:layout_marginTop="8dp"
                        app:layout_constraintTop_toTopOf="@+id/constraintLayout2"
                        app:layout_constraintBottom_toTopOf="@+id/constraintLayout2"/>

                </androidx.constraintlayout.widget.ConstraintLayout>

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="18sp"
                    android:textColor="@color/black"
                    android:letterSpacing="-0.01"
                    android:lineSpacingExtra="4sp"
                    android:text="Invite your contacts"
                    app:layout_constraintTop_toBottomOf="@+id/constraintLayout3"
                    android:layout_marginStart="16dp" app:layout_constraintStart_toStartOf="parent"
                    android:id="@+id/textView" android:layout_marginTop="12dp"/>

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="16sp"
                    android:textColor="@color/warm_grey"
                    android:lineSpacingExtra="10sp"
                    android:visibility="gone"
                    android:text="Send your friends and family a link and you both get rewarded when they sign up."
                    android:layout_marginTop="12dp"
                    app:layout_constraintTop_toBottomOf="@+id/textView" android:id="@+id/txt_invite"
                    android:layout_marginStart="16dp" app:layout_constraintStart_toStartOf="parent"/>

                <androidx.constraintlayout.widget.ConstraintLayout
                    android:layout_width="match_parent"
                    android:layout_height="220dp"
                    android:background="@drawable/white_radius"
                    app:layout_constraintTop_toBottomOf="@+id/txt_invite"
                    app:layout_constraintStart_toStartOf="parent" android:layout_marginStart="16dp"
                    app:layout_constraintEnd_toEndOf="parent" android:layout_marginEnd="16dp"
                    android:id="@+id/permission_layout">
                    <Button
                        android:text="Give Access"
                        android:layout_width="0dp"
                        android:background="@drawable/form_button_radius"
                        android:textAppearance="@style/BottomButtonAppearance"
                        android:layout_height="48dp"
                        android:id="@+id/btn_give_access"
                        app:layout_constraintEnd_toEndOf="parent"
                        android:layout_marginEnd="16dp"
                        android:layout_marginStart="16dp"
                        app:layout_constraintStart_toStartOf="parent"
                        app:layout_constraintTop_toBottomOf="@+id/textView6" android:layout_marginTop="16dp"/>
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:textSize="13sp"
                        android:textColor="@color/warm_grey"
                        android:lineSpacingExtra="7sp"
                        android:gravity="center_horizontal"
                        android:text="@string/to_send_your_friends_and_family_a_referral_link_please_give_us_access_to_your_contacts"
                        tools:layout_editor_absoluteX="0dp"
                        android:layout_marginTop="16dp" app:layout_constraintTop_toBottomOf="@+id/imageView2"
                        android:id="@+id/textView6"/>
                    <ImageView
                        android:layout_width="60dp"
                        android:layout_height="60dp" app:srcCompat="@drawable/icon_person"
                        android:id="@+id/imageView2" android:layout_marginTop="20dp"
                        app:layout_constraintTop_toTopOf="parent" app:layout_constraintEnd_toEndOf="parent"
                        android:layout_marginEnd="8dp" app:layout_constraintStart_toStartOf="parent"
                        android:layout_marginStart="8dp"/>
                </androidx.constraintlayout.widget.ConstraintLayout>


                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/contact_recycler"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    tools:listitem="@layout/item_contact"
                    tools:layout_editor_absoluteX="0dp" android:layout_marginTop="16dp"
                    app:layout_constraintTop_toBottomOf="@+id/permission_layout"/>

                <ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content"
                    app:layout_constraintTop_toBottomOf="@+id/permission_layout"
                    android:indeterminate="true"
                    android:indeterminateTintMode="src_atop"
                    android:indeterminateTint="@color/colorPrimary"
                    android:visibility="gone"
                    app:layout_constraintEnd_toEndOf="parent" android:layout_marginEnd="8dp"
                    app:layout_constraintStart_toStartOf="parent" android:layout_marginStart="17dp"
                    android:progressTint="@color/warm_grey" android:layout_marginTop="24dp"
                    android:id="@+id/progress_bar"/>

            </androidx.constraintlayout.widget.ConstraintLayout>

        </androidx.core.widget.NestedScrollView>

    </LinearLayout>
<layout>

适配器代码

internal class ContactAdapter(context: Context, private val mProductList:   ArrayList<ContactModel>) : RecyclerView.Adapter<ContactAdapter.MyViewHolder>() {
    private val inflater: LayoutInflater;
    private val key: String? = null;

    init {
        inflater = LayoutInflater.from(context);
    }

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): MyViewHolder {
        val view = inflater.inflate(R.layout.item_contact, parent, false);
        return MyViewHolder(view);
    }

    override fun onBindViewHolder(holder: MyViewHolder, position: Int){
        val selectedProduct = mProductList[position];
        holder.setData(selectedProduct);

    }

    override fun getItemCount(): Int {
        return mProductList.size;
    }

    internal inner class MyViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView), View.OnClickListener {
        fun setData(selectedProduct: ContactModel)
        {
            itemView.txt_name.text = selectedProduct.name;
            itemView.txt_number.text = selectedProduct.number;
        }

        override fun onClick(v: View)
        {

        }
    }
}

共有2个答案

轩辕成天
2023-03-14

这是一个常见问题,在嵌套滚动视图中使用回收器视图时,会导致未定义回收站视图高度,因此,如果您在此回收站视图中显示 1000 个项目(嵌套滚动视图内的回收站视图),则回收站适配器中的 onCreateViewHolder() 方法将被调用 1000 次,因为未确定此回收站的高度。
因此,要解决此问题,您必须使用

recyclerview.setNestedScrollingEnabled(false);

这将解决您的问题< br >此外,当recycler视图放置在嵌套的滚动视图中时,最好为其定义一定的高度。< br >

习淇
2023-03-14

我使用协调器布局/折叠工具栏解决了这个问题。

 类似资料:
  • 我的主要活动是片段,其中一个片段是Map Fragment。现在,当我点击那里时,每次它都会慢慢打开。我正在使用fragment的单例实例,但它仍然不能像预期的那样工作。下面是这门课的一个好例子:

  • 我在StackOverflow上看到了一些类似的事件。然而,这些似乎都不适用于我的情况。我遇到的问题是,我的RecyclerView正在工作,但没有显示任何内容。我已经运行了多个测试,试图找出它不工作的原因,但所有测试都支持它正常工作的事实。 getItemCount中的日志返回3,这是正确的数字。我只是不明白为什么它没有显示。我回头看了我在以前的活动中做的回收器视图,它们都在一定程度上匹配(其他

  • 我正在开发一个天气应用程序,我想在其中使用中的两个,它的成员是。我想使用一个来显示今天的天气,另一个视图来显示其他日子的天气。如果我只使用一个来显示天气,我的就可以正常工作。我还覆盖了视图`type I应该充气。 的代码: 我已覆盖的的的代码: 无论中的的值是什么,函数总是返回。 有人能告诉我我做错了什么吗?

  • CLMAIN->clA(类A,$B)。$B是类a的内部类B。 从clMain创建具有指定url的新clA到包含类A(和类$B)的jar文件。然后通过CLA创建新对象A。 从X加载的另一个类通过接口执行对象a的方法没有问题。 然后,在该方法中,应该创建新对象$b,但它抛出. 在类A的构造函数中加载类$B可以解决以下问题:

  • 问题内容: 我需要在我的站点中显示另一个外部站点的内容。通常标签可以做到这一点。但我的要求不是全部内容,而只是该网站的一部分。例如该网站的布局有3个部分,,,。我的意思是我只想显示一部分。我该怎么做? 我试过了,但是没有用。 问题答案: 这是由于ajax跨域安全性限制,一种技巧是从服务器设置代理脚本,该脚本从不同的站点(域)下载内容,并将该代理用作javascript中的参考。 示例:(proxy

  • 如果我有一个内部类声明,例如: 其次是: A$B内部类也会加载吗?如果B内部类没有被声明为“静态”呢?