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

当添加新项目[重复]时,RecyclerView滚动返回到列表顶部

金承嗣
2023-03-14

我试过使用descendantFocusability=“blocksdescendents”,但这不起作用。

这是我的XML代码,可以在其中找到RecyclerView

<?xmlversion="1.0"encoding="utf-8"?>

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:headerLayout="@layout/top_navigation_bar"
tools:context=".MainActivity"
android:descendantFocusability="blocksDescendants">

<RelativeLayout
android:id="@+id/productsLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="50dp"
android:orientation="vertical"
android:background="#EBE7E7"
>

<TextView
android:id="@+id/productsLayoutTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginBottom="16dp"
android:lineSpacingExtra="0sp"
android:text="@string/produtos_em_destaque"
android:textColor="#000000"
android:textSize="16sp"
android:textStyle="normal"/>

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/productsLayoutTitle"
/>

<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:layout_alignBottom="@+id/recyclerView"
android:scaleX="1"
android:scaleY="1"
android:progressTint="#1C36FF"
/>

</RelativeLayout>
</RelativeLayout>

用于向RecyclersView添加数据的代码是

fun showData(products:Product,productsListSize:Int){

if(!isStarted){

  recyclerView.apply{
   layoutManager=LinearLayoutManager(this@MainActivity)
   adapter=ViewHolderAdapter(products,productsListSize)
   (adapter as ViewHolderAdapter).notifyItemRangeInserted(0,productsListSize)
   pageNumber++
  }

  progressBar.visibility=View.GONE
  isStarted=true
}else{

  recyclerView.apply{
    adapter=ViewHolderAdapter(products,pageNumber*limitPerPage)
    (adapter as ViewHolderAdapter).notifyItemRangeInserted(((pageNumber-1)*limitPerPage),pageNumber*limitPerPage)
    pageNumber++
  }
  progressBar.visibility=View.GONE
}

}


packagecom.example.kotlinbasics

importandroid.graphics.Color
importandroid.view.LayoutInflater
importandroid.view.View
importandroid.view.ViewGroup
importandroid.widget.ImageView
importandroid.widget.RatingBar
importandroid.widget.TextView
importandroidx.recyclerview.widget.RecyclerView
importcom.squareup.picasso.Picasso
importkotlinx.android.synthetic.main.recyclerview_layout.view.*

class ViewHolderAdapter(private val products:Product,private val productsListSize:Int):RecyclerView.Adapter<ViewHolderAdapter.ViewHolder>(){

override fun onCreateViewHolder(parent:ViewGroup,viewType:Int):ViewHolder{
val view=LayoutInflater.from(parent.context).inflate(R.layout.recyclerview_layout,parent,false)
return ViewHolder(view)
}

override fun getItemCount()=productsListSize

override fun onBindViewHolder(holder:ViewHolder,position:Int){

holder.productName.text=products.produtos[position].nome
Picasso.get().load(products.produtos[position].img).into(holder.productImage)
}

class ViewHolder(itemView:View):RecyclerView.ViewHolder(itemView){

val productName:TextView=itemView.ProductName
val productImage:ImageView=itemView.ProductImage
}

}


所有应用程序都工作得很好,唯一的问题是滚动行为。当我在HIM中添加新数据时,我希望滚动位置不会出现在RecyclersView列表的顶部。

共有1个答案

车思淼
2023-03-14

当您每次创建一个新适配器时,recyclerView将始终返回到起始位置。您必须更新当前适配器,而不是使用整个列表创建另一个适配器。

您的适配器上应该有一个方法来管理项列表,例如

fun updateList(product: Product) {
    myList.add(product.list)
}

在else分支中,您将需要更新列表

recyclerView.apply{
    (adapter as? ViewHolderAdapter)?.updateList(products)
}
 类似资料:
  • 我一直在寻找一个适当的API来做我需要做的事情,我几乎可以肯定的是,必须有一个API。但我找不到。 提前致谢

  • 我有一个模型类的,其中有一些项。如何将新项添加到的第一个位置,并将其他项移到旁边。

  • 问题内容: 这是我的onCreate,它处理适配器,LinearLayoutManager等。我尝试了每个选项以尝试将其滚动到顶部,但不能。我什至尝试创建自己的自定义LinearLayoutManager。 问题答案: 您尝试过还是? RecyclerView不会在其中实现任何滚动逻辑,而是更加具体,它会根据实现的布局转到特定的索引,在您的情况下是线性的。

  • 我试图实现一个无休止的滚动列表视图,但当我调用时,整个列表将刷新,然后滚动位置返回顶部。 这是正常行为吗?我如何让它简单地添加添加的项目而不刷新并保持滚动位置?

  • 问题内容: 我正在尝试实现无穷尽的滚动列表视图,但是当我调用整个列表时,滚动位置将回到顶部。 这是正常现象吗?如何使它简单地添加添加的项目而不刷新并保持滚动位置? 问题答案: 这种行为是不正常的。我看不到您的代码,我建议您执行以下操作: 1)您不是从UI线程调用。正确的方法: 2)您是否偶然拨打了电话 3)在您的适配器中,您重写了方法并添加了说明以转到顶部 4)如果您使用列表来填充适配器- 每次都

  • 我正在做一个西班牙新闻应用程序,看这里: 这个应用程序的问题是,每当任何用户点击like、play audio或translate按钮时,recyclerView就会跳到顶部。 > 数据以片段形式从Firebase实时数据库中获取。请帮帮忙。 @override public View onCreateView(LayoutInfluater Influater,ViewGroup contain