AdapterView 和 RecyclerView 的连续滚动

AdapterView 和 RecyclerView 的连续滚动

android

RecyclerView

tutorial

    • 概述
    • ListView 和 GridView 的实现方式
    • RecyclerView 的实现方式
      • 复位连续滚动状态
    • 故障排查
    • 在自定义的适配器中显示进度

概述



应用中一个常见的使用场景就是:当用户滚动浏览的项目时,会自动加载更多的项目(又叫做无限滚动)。它的原理是:当滚动到达底部之前,一旦当前剩余可见的项目达到了一个设定好的阈值,就会触发加载更多数据的请求。

本文列举了 ListViewGridViewRecyclerView 的实现方法。它们的实现都是类似的,除了 RecyclerView 还需要传入 LayoutManager,这是因为它需要给无限滚动提供一些必要的信息。

无论哪个控件,实现无限滚动所需要的信息无非就包括这么几点:检测列表中剩余的可见元素,在到达最后一个元素之前开始获取数据的阈值。这个阈值可以用来决定什么时候开始加载更多。

示例图 1

要实现连续滚动的一个重点就是:一定要在用户到达列表的末尾前就获取数据。因此,添加一个阈值来让列表在预期的时候就加载数据。

示例图片 2

ListView 和 GridView 的实现方式


每个 AdapterView (例如 ListViewGridView)都支持 onScrollListener 事件的绑定,只要用户滑动列表,就会触发该事件。使用该体系,我们就可以定义一个基础类:EndlessScrollListener,它继承自 OnScrollListener,可以适用于大多数情况:

  1. import android.widget.AbsListView;



  2. public abstract class EndlessScrollListener implements AbsListView.OnScrollListener { 

  3. // The minimum number of items to have below your current scroll position 

  4. // before loading more. 

  5. private int visibleThreshold = 5; 

  6. // The current offset index of data you have loaded 

  7. private int currentPage = 0; 

  8. // The total number of items in the dataset after the last load 

  9. private int previousTotalItemCount = 0; 

  10. // True if we are still waiting for the last set of data to load. 

  11. private boolean loading = true; 

  12. // Sets the starting page index 

  13. private int startingPageIndex = 0; 


  14. public EndlessScrollListener() { 




  15. public EndlessScrollListener(int visibleThreshold) { 

  16. this.visibleThreshold = visibleThreshold; 




  17. public EndlessScrollListener(int visibleThreshold, int startPage) { 

  18. this.visibleThreshold = visibleThreshold; 

  19. this.startingPageIndex = startPage; 

  20. this.currentPage = startPage; 




  21. // This happens many times a second during a scroll, so be wary of the code you place here. 

  22. // We are given a few useful parameters to help us work out if we need to load some more data, 

  23. // but first we check if we are waiting for the previous load to finish. 

  24. @Override 

  25. public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount)  



  26. // If the total item count is zero and the previous isn‘t, assume the 

  27. // list is invalidated and should be reset back to initial state 

  28. if (totalItemCount < previousTotalItemCount) { 

  29. this.currentPage = this.startingPageIndex; 

  30. this.previousTotalItemCount = totalItemCount; 

  31. if (totalItemCount == 0) { this.loading = true; }  



  32. // If it‘s still loading, we check to see if the dataset count has 

  33. // changed, if so we conclude it has finished loading and update the current page 

  34. // number and total item count. 

  35. if (loading && (totalItemCount > previousTotalItemCount)) { 

  36. loading = false; 

  37. previousTotalItemCount = totalItemCount; 

  38. currentPage++; 




  39. // If it isn‘t currently loading, we check to see if we have breached 

  40. // the visibleThreshold and need to reload more data. 

  41. // If we do need to reload some more data, we execute onLoadMore to fetch the data. 

  42. if (!loading && (firstVisibleItem + visibleItemCount + visibleThreshold) >= totalItemCount ) { 

  43. loading = onLoadMore(currentPage + 1, totalItemCount); 






  44. // Defines the process for actually loading more data based on page 

  45. // Returns true if more data is being loaded; returns false if there is no more data to load. 

  46. public abstract boolean onLoadMore(int page, int totalItemsCount); 


  47. @Override 

  48. public void onScrollStateChanged(AbsListView view, int scrollState) { 

  49. // Don‘t take any action on changed 





注意:这是一个抽象类,要使用它,必须实现该类中的抽象方法:onLoadMore,用于检索新的数据。在 activity 中,可以用一个匿名内部类来实现这个抽象类,并把它绑定到适配器上。例如:

  1. public class MainActivity extends Activity {


  2. @Override 

  3. protected void onCreate(Bundle savedInstanceState) { 

  4. // ... the usual  

  5. ListView lvItems = (ListView) findViewById(R.id.lvItems); 

  6. // Attach the listener to the AdapterView onCreate 

  7. lvItems.setOnScrollListener(new EndlessScrollListener() { 

  8. @Override 

  9. public boolean onLoadMore(int page, int totalItemsCount) { 

  10. // Triggered only when new data needs to be appended to the list 

  11. // Add whatever code is needed to append new items to your AdapterView 

  12. loadNextDataFromApi(page);  

  13. // or loadNextDataFromApi(totalItemsCount);  

  14. return true; // ONLY if more data is actually being loaded; false otherwise. 



  15. }); 





  16. // Append the next page of data into the adapter 

  17. // This method probably sends out a network request and appends new data items to your adapter.  

  18. public void loadNextDataFromApi(int offset) { 

  19. // Send an API request to retrieve appropriate paginated data  

  20. // --> Send the request including an offset value (i.e `page`) as a query parameter. 

  21. // --> Deserialize and construct new model objects from the API response 

  22. // --> Append the new data objects to the existing set of items inside the array of items 

  23. // --> Notify the adapter of the new items made with `notifyDataSetChanged()` 





现在,当你滚动列表时,每当剩余元素到达阈值时,列表就会自动加载下一页的数据。该方法对于 GridView 来说,一样的有效。

RecyclerView 的实现方式



对于 RecyclerView 来说,我们也可以使用一个相似的方法:定义接口 EndlessRecyclerViewScrollListener;一个必须实现的方法 onLoadMore()。在 RecyclerView 中,LayoutManager 用于渲染列表元素并管理滚动,即提供与适配器相关的当前滚动位置的信息。基于上述理由,我们需要传入一个 LayoutManager 的实例,用于收集必须的信息,和用于确定加载更多数据的时机。

因此,RecyclerView 实现连续分页需要以下几个步骤:

  1. EndlessRecyclerViewScrollListener.java 类拷贝到你的项目中
  2. RecyclerView 上调用 addOnScrollListener() 方法来启用连续分页。给该方法传入 EndlessRecyclerViewScrollListener 的实例,当新页需要加载时,实现 onLoadMore() 方法
  3. onLoadMore() 方法中,加载更多数据,并把它们填充到列表中

代码示例如下:

  1. public class MainActivity extends Activity {


  2. // Store a member variable for the listener 

  3. private EndlessRecyclerViewScrollListener scrollListener; 


  4. @Override 

  5. protected void onCreate(Bundle savedInstanceState) { 

  6. // Configure the RecyclerView 

  7. RecyclerView rvItems = (RecyclerView) findViewById(R.id.rvContacts); 

  8. LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this); 

  9. rvItems.setLayoutManager(linearLayoutManager); 

  10. // Retain an instance so that you can call `resetState()` for fresh searches 

  11. scrollListener = new EndlessRecyclerViewScrollListener(linearLayoutManager) { 

  12. @Override 

  13. public void onLoadMore(int page, int totalItemsCount, RecyclerView view) { 

  14. // Triggered only when new data needs to be appended to the list 

  15. // Add whatever code is needed to append new items to the bottom of the list 

  16. loadNextDataFromApi(page); 



  17. }; 

  18. // Adds the scroll listener to RecyclerView 

  19. rvItems.addOnScrollListener(scrollListener); 




  20. // Append the next page of data into the adapter 

  21. // This method probably sends out a network request and appends new data items to your adapter.  

  22. public void loadNextDataFromApi(int offset) { 

  23. // Send an API request to retrieve appropriate paginated data  

  24. // --> Send the request including an offset value (i.e `page`) as a query parameter. 

  25. // --> Deserialize and construct new model objects from the API response 

  26. // --> Append the new data objects to the existing set of items inside the array of items 

  27. // --> Notify the adapter of the new items made with `notifyItemRangeInserted()` 





复位连续滚动状态



当你准备执行新的搜索时,要确保清除列表上已经存在的数据,并马上通知适配器数据的变化。当然,还需要使用 resetState() 方法来重置 EndlessRecyclerViewScrollListener 的状态:

  1. // 1. First, clear the array of data


  2. listOfItems.clear(); 

  3. // 2. Notify the adapter of the update 

  4. recyclerAdapterOfItems.notifyDataSetChanged(); // or notifyItemRangeRemoved 

  5. // 3. Reset endless scroll listener when performing a new search 

  6. scrollListener.resetState(); 

完整的连续滚动代码可以参考:code sample for usagethis code sample

故障排查



如果在开发中遇到问题,请考虑下述的建议:

  • 对于 ListView 来说,请一定在 ActivityonCreate() 方法 或 FragmentonCreateView() 方法中,给它设置 setOnScrollListener() 监听。否则,你可能会遇到一些想不到的问题
  • 要使分页系统可以可靠地、持续地工作,在给列表添加新的数据之前,你应该确保清除适配器的数据。对 RecyclerView 来说,当需要通知适配器数据有更新时,强烈建议使用精度更细的通知方法。
  • 要触发分页,始终记得 loadNextDataFromApi 方法调用时,需要把新数据添加到已经存在的数据源。按句话说,只有首次加载时才清除数据,以后的每次分页都是把新增的数据添加到原有的数据集中。
  • 如果你遇到了下述的错误:Cannot call this method in a scroll callback. Scroll callbacks might be run during a measure & layout pass where you cannot change the RecyclerView data,那你应该按照 Stack Overflow 中的解决办法对代码进行改造:
  1. // Delay before notifying the adapter since the scroll listeners


  2. // can be called while RecyclerView data cannot be changed. 

  3. view.post(new Runnable() { 

  4. @Override 

  5. public void run() { 

  6. // Notify adapter with appropriate notify methods 

  7. adapter.notifyItemRangeInserted(curSize, allContacts.size() - 1); 



  8. }); 

在自定义的适配器中显示进度



想要在 ListView 的底部显示加载数据的进度,需要对适配器进行特殊处理。使用 getItemViewType(int position) 定义两种不同的视图类型,既正常行与最后一行的样子不同。

时间: 2024-11-05 21:48:18

AdapterView 和 RecyclerView 的连续滚动的相关文章

Android开发:ListView、AdapterView、RecyclerView全面解析

目录 AdapterView简介 AdapterView本身是一个抽象类,AdapterView及其子类的继承关系如下图: 特征: AdapterView继承自ViewGroup,本质是个容器 AdapterView可以包含多个"列表项",并将这多个列表项以合适的形式展示 AdapterView显示的列表项内容由Adapter提供 它派生的子类在用法上也基本相似,只是在显示上有一定区别,因此把他们也归为一类. 由AdapterView直接派生的三个类: AbsListView.AbsS

JS连续滚动幻灯片:原理与实现

什么是连续滚动幻灯片?打开一些网站的首页,你会发现有一块这样的区域:一张图片,隔一段时间滑动切换下一张:同时,图片两端各有一个小按钮,供你手动点选下一张:底部有一排小圆圈,供你选定特定的某帧图片.这就是“连续滚动幻灯片”(我自己的叫法,当然它也可能叫焦点轮播图,轮播图等等等等),本文单讲手动连续切换,不涉及自动播放和底部小圆圈. 实现这种幻灯片有几个难点: 1.图片放置:你需要把所有图片放入一个div(这里就把它的class叫做pics吧)中,再把pics放入一个更大的div(就命名为conta

图片左右循环连续滚动代码,解决marquee的留白问题

<marquee ONMOUSEOUT="this.start()" ONMOUSEOVER="this.stop()" DIRECTION="LEFT" scrollamount=3 behavior="scroll" loop="-1" deplay="0"> <table> <tr> <td> <a href="htt

Unity3D游戏开发之连续滚动背景

Unity3D游戏开发之连续滚动背景 原文  http://blog.csdn.net/qinyuanpei/article/details/22983421 在诸如天天跑酷等2D游戏中,因为游戏须要表现出运动的感觉,通常都会使游戏背景连续循环滚动以增强视觉效果,那么今天,博主就来带领大家一起来实现连续滚动背景吧! 首先来讲述一下原理,准备两张连续的图片(博主这里使用了一张图片,好吧,我偷懒了),我们使用正交投影的摄像机对准第一张背景,然后使用脚本让图片自右向左開始移动,当第一张图片移出摄像机的

无缝连续滚动

1.简单的无缝连续滚动 原来:页面上是6个图片,编号0.1.2.3.4.5,复制一倍在后面,长长的火车在来回移动. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml

Android TV端的(RecyclerView)水平滚动焦点错乱问题

package com.hhzt.iptv.ui.customview; import android.content.Context;import android.content.res.TypedArray;import android.graphics.Rect;import android.os.Build;import android.support.v4.view.ViewCompat;import android.support.v7.widget.GridLayoutManage

RecyclerView常见问题解决方案,RecyclerView嵌套自动滚动,RecyclerView 高度设置wrap_content 无作用等问题

1,ScrollView或者RecyclerView1 嵌套RecyclerView2  进入页面自动跳转到recyclerView2上面页面会自动滚动 貌似是RecyclerView 自动获得了焦点两种解决办法一,recyclerview去除焦点recyclerview.setFocusableInTouchMode(false);recyclerview.requestFocus();二,在代码里面 让处于ScrollView或者RecyclerView1 顶端的某个控件获得焦点即可比如顶部

JS实现图片的不间断连续滚动

js替代marquee实现图片无缝滚动 可能大家都碰到过,当marquee中滚动的是图片的时候,滚到终点的时候直接就跳回到起点了,而不像文字那样可以无缝滚动,下面介绍的是通过js来实现图片的无缝滚动.先了解一下下面这几个属性: innerHTML: 设置或获取位于对象起始和结束标签内的 HTMLscrollHeight: 获取对象的滚动高度.scrollLeft: 设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离scrollTop: 设置或获取位于对象最顶端和窗口中可见内容的最顶端

使用RecyclerView实现滚动控件

滚动控件的实现方式有很多, 使用RecyclerView也比较简单. 做了一个简单的年龄滚动控件, 让我们来看看RecyclerView的使用方式, 主要有以下几点: (1) 对齐控件中心位置. (2) 计算滚动距离. (3) 高亮中心视图. (4) 实时显示中心数据. (5) 停止时自动对齐. (6) 滚动时, 设置按钮状态开关. 1. 框架 主要关注RecyclerView部分逻辑. /** * 初始化年龄滑动条 */ private void initAgeList() { LinearL