我有一个旧应用程序,它使用AutoCompleteTextView通过SimpleCursorAdapter从SQlite数据库过滤数据(大约 3000 个项目)。
它工作得很好,而且速度很快。
但是,我刚刚意识到它SimpleCursorAdapter (Context context, int layout, Cursor c, String[] from, int[] to)
已被弃用。
文档说建议使用“带有 CursorLoader 的 LoaderManager ”。但是,LoaderManager/CursorLoader 似乎要连接到我不需要的内容提供程序,因为此 SQlite 数据仅由我的应用程序使用,不需要共享给其他应用程序。
您能否就该主题提供一些说明?
对于带有 SQlite 数据的 AutoCompleteTextViews,建议使用哪个适配器?
非常感谢