如何在不同时间用光标的不同数据更新列表视图
在我的应用程序中,我向 DB
发出查询并取回 cursor
,然后将该 cursor
发送到 Cursoradapter
> 将数据绑定到 ListView
。
一切工作正常,但我的问题是如果 cursor
有 100 到 500 行意味着我的cursoradapter
需要时间来绑定数据,那么有什么方法可以让我一次只能将 5 到 10 行放入 listview
并继续更新直到所有游标值在列表视图中显示。
请帮助我..
In my application i am firing the query to DB
and getting back the cursor
then i am sending that cursor
to Cursoradapter
to bind the data to ListView
.
Every thing is working fine but my problem is if cursor
has 100 to 500 rows means my cursoradapter
is taking time to bind the data,So is there any way were i can only put 5 to 10 rows at a time to listview
and keep on updating till all cursor values got show in list view.
Please help me..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该使用 LazyLoading 这里有一个很好的链接
http://androidsnips.blogspot .com/2010/08/lazy-loading-of-images-in-list-view-in.html
you should use LazyLoading here is a good link for this
http://androidsnips.blogspot.com/2010/08/lazy-loading-of-images-in-list-view-in.html