Question

Default Android CursorLoader uses ContentProvider and knows about all inserts, updates, ... SQLiteCursorLoader doesn't know, but I'm curious about the best pattern for sharing SQLiteCursorLoader object between activities. Is it possible at all?

Was it helpful?

Solution

Do not share loaders, period, whether it is SQLiteCursorLoader, CursorLoader, or any other Loader. They are only for use by the activity/fragment that created them.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top