ListView 上来自 SQLite 的大数据
Large data from SQLite on ListView
如果 CursorAdapter 被弃用,在 ListView 中管理大数据的推荐方法是什么?
在 API 级别 11 之后是 LoaderManager。但是apparently需要和CursorAdapter一起使用吗?
有没有更新的方法?
CursorAdapter
未弃用。构造函数CursorAdapter(Context context, Cursor c)
是。您只需要使用其他构造函数 CursorAdapter(Context context, Cursor c, int flags)
.
如果 CursorAdapter 被弃用,在 ListView 中管理大数据的推荐方法是什么?
在 API 级别 11 之后是 LoaderManager。但是apparently需要和CursorAdapter一起使用吗?
有没有更新的方法?
CursorAdapter
未弃用。构造函数CursorAdapter(Context context, Cursor c)
是。您只需要使用其他构造函数 CursorAdapter(Context context, Cursor c, int flags)
.