Android分页加载刷新AsyncListUtil中DataCallback的refreshData()详解手机开发

Android分页加载刷新AsyncListUtil中DataCallback的refreshData()

Android分页加载刷新AsyncListUtil中DataCallback的refreshData()函数,返回值控制分页总数据量。如果返回一个既定的整型数据,那么AsyncListUtil的分页将在这个整型数据范围内分页和刷新,而不会超出这个范围。refreshData的实现源代码:

        /** 
         * Refresh the data set and return the new data item count. 
         * 
         * <p> 
         * If the data is being accessed through [email protected] android.database.Cursor} this is where 
         * the new cursor should be created. 
         * 
         * @return Data item count. 
         */ 
        @WorkerThread 
        public abstract int refreshData();

实际的开发过程中,既然是分页,通常不确定到底有多少条数据,像股票金融证券类分页的股票数据,Android终端不确定服务器会返回多少条股票数据,因此如果不确定数据条目具体数字,不妨就返回一个最大整型值Integer.MAX_VALUE即可。
附录:
1,《基于Android官方AsyncListUtil优化改进RecyclerView分页加载机制(一)》链接:http://blog.csdn.net/zhangphil/article/details/78603499 
2,《基于Android官方AsyncListUtil优化经典ListView分页加载机制(二)》链接:http://blog.csdn.net/zhangphil/article/details/78645089 
3,《Android Room联合AsyncListUtil实现RecyclerView分页加载ORM数据》链接:https://blog.csdn.net/zhangphil/article/details/78661838

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/3095.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论