yahoo / squidb

SquiDB is a SQLite database library for Android and iOS
https://github.com/yahoo/squidb/wiki
Apache License 2.0
1.31k stars 132 forks source link

SquidCursorLoader with android.support.v4 #105

Closed inawlaljar closed 9 years ago

inawlaljar commented 9 years ago

Hi, I have a fragment that extends android.support.v4.app.Fragment and implements android.support.v4.app.LoaderManager.LoaderCallbacks<SquidCursor>

It's either conflicts with getLoaderManager().initLoader(0, null, this); Or android.support.v4.content.Loader<SquidCursor> onCreateLoader(int id, Bundle args) on return.

It seems to me that SquidCursorLoader doesn't allow casting to android.app.loader.

sbosley commented 9 years ago

You want SquidSupportCursorLoader -- see this wiki page.