I have a fragment that uses multiple CursorLoaders. All works fine. Now I need to add an AsyncTaskLoader as well, to the same fragment.
Question is, how can I use the same LoaderManager.LoaderCallbacks interface to manage both my CursorLoaders and AsyncTaskLoader?
My thought is that since CursorLoader is-a AsyncTaskLoader, then I should be able to adapt the LoaderCallBacks to both, but I may be miss the boat...
It looks like I am too later for this question, hope it help some guys.
I just finished a project with multi loaders in same Activity, one CursorLoader used for database, other AsynctaskLoaders for network job.
here is my answer under other question and my project link