我有一个旧应用程序,它通过 SimpleCursorAdapter 从 SQlite 数据库中使用 AutoCompleteTextView 过滤数据(约3000项)。
它运作良好,而且速度很快。
但是,我刚才意识到SimpleCursorAdapter (Context context, int layout, Cursor c, String[] from, int[] to)
已被弃用。
文档说明建议使用“ LoaderManager with CursorLoader ”。但是,似乎LoaderManager / CursorLoader要连接到我不需要的内容提供者,因为这个SQlite数据仅由我的应用程序使用,不需要与其他应用程序共享。
请您澄清一下这个主题吗?
使用SQlite数据的AutoCompleteTextViews建议的适配器是什么?
非常感谢