【发布时间】:2015-08-18 05:51:42
【问题描述】:
我正在使用 SQLCipher 来加密 android 数据库。 我在
的行中收到类型转换错误(无法从 CursorLoader 转换为 Cursor)public Loader<Cursor> onCreateLoader(int id, Bundle args){
..
..
return new CursorLoader(this, CONTENT_URI, projection, selection, null, null);
}
如果我使用默认的 Android 数据库光标,它将起作用。
【问题讨论】:
-
嗨,你有没有解决这个问题。我有完全一样的问题。谢谢
-
我也有同样的问题
标签: cursor android-cursorloader sqlcipher