Skip to content

Fixed Cursor initialization deprecation

username-removed-273687 requested to merge (removed):issue-490 into master

Fixes issue #490 (closed).
Android documentation suggests using CursorAdapter which in turn suggests using CursorLoader, as CursorAdapter(Context context, Cursor cursor) is deprecated using CursorAdapter(Context context, Cursor cursor, int flags) with flags = 0 has the same effect.

Merge request reports