如何在后台加载带有 CustomCursorAdapter 和进度条的列表视图?
我正在使用 CustomCursorAdapter
(扩展 SimpleCursorAdapter
),它将光标数据绑定到我的主要活动中的 ListView
,但速度非常慢。所以我想在后台加载它并显示一个 ProgressBar
。问题是内容是立即显示的,所以我没有机会向用户显示 ProgressBar
。
有解决办法吗?
I'm using a CustomCursorAdapter
(extends SimpleCursorAdapter
) which binds the cursor data to a ListView
in my main activity but it is very slow. So I want to load it in the background and show a ProgressBar
. The problem is that the content is shown at once, so I don't have a chance to show a ProgressBar
to the user.
Is there a solution for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 AsyncTask 来执行此操作。请参考这个问题:
如何将异步任务应用到此
You have to use AsyncTask to do this. Pls refer to this question:
How to apply async task into this