用于ListView的CursorAdapter与ArrayAdapter

时间:2011-12-19 03:53:10

标签: android json listview android-arrayadapter android-cursoradapter

我想用{J}形式填充我的ListView数据,这些数据将来自网络。该列表在理论上应该是无限的,如果滚动到底部,应用程序会请求更多数据。

  • 我应该使用CursorArray(List)适配器将我的在线数据库与我的ListView相关联吗?
  • 更一般地说,在光标数组之间进行选择时需要考虑的参数是什么?

1 个答案:

答案 0 :(得分:6)

我认为你应该看看ContentProviders。它们对于您要解决的问题更为自然。您必须实现自定义CursorContentProvider会在查询请求中返回。

价:

http://developer.android.com/guide/topics/providers/content-providers.html