标签: android listview simplecursoradapter
我正在使用CustomCursorAdapter(扩展SimpleCursorAdapter),它将光标数据绑定到我的主要活动中的ListView,但速度非常慢。所以我想在后台加载它并显示ProgressBar。问题是内容会立即显示,因此我没有机会向用户显示ProgressBar。
CustomCursorAdapter
SimpleCursorAdapter
ListView
ProgressBar
有解决方法吗?
答案 0 :(得分:0)
您必须使用AsyncTask来执行此操作。请参考这个问题:
How to apply async task into this