Top "Android-cursorloader" questions

A loader that queries the `ContentResolver` and returns a `Cursor`. This class implements the `Loader` protocol in a standard way for querying cursors, building on `AsyncTaskLoader` to perform the cursor query on a background thread so that it does not block the application's UI.

CursorLoader usage without ContentProvider

Android SDK documentation says that startManagingCursor() method is depracated: This method is deprecated. Use the new CursorLoader class with LoaderManager …

android cursor android-cursorloader android-loadermanager android-contentprovider
How to read an SQLite DB in android with a cursorloader?

I'm setting up my app so that people can create groups of their friends. When a group is created, it …

android android-listview android-fragments simplecursoradapter android-cursorloader
CursorLoader not updating after data change

I have created a small application, trying to understand the functionality of the LoaderManager and CursorLoader-classes. I have implemented LoaderCallbacks&…

android android-contentprovider android-cursorloader android-loadermanager
How do CursorLoader automatically updates the view even if the app is inactive?

I have been working on a small To-Do list app. I used CursorLoader to update the ToDolistview from a content …

android android-loadermanager android-cursorloader
SimpleCursorTreeAdapter and CursorLoader for ExpandableListView

I am trying to asynchronously query a provider by using a CursorLoader with a SimpleCursorTreeAdapter Here is my Fragment class …

android simplecursoradapter expandablelistadapter android-cursorloader
How does CursorLoader with LoaderManager know to send the cursor to a CursorAdapter?

I was going through some of my code and I realized I don't actually know how a CursorLoader and LoaderManager …

android android-contentprovider android-loadermanager android-cursorloader
How can I refresh the cursor from a CursorLoader?

So I have my MainDisplayActivity which implements both Activity and LoaderManager.LoaderCallbacks<Cursor>. Here I have A ListView, …

android debugging android-contentprovider android-loadermanager android-cursorloader
What's the purpose of startManagingCursor?

Ok, the documentation states that it lets the Activity manage the cursor's lifecycle. But I don't really see the point …

android sqlite cursor android-loadermanager android-cursorloader
How to (properly) transition from startManagingCursor to CursorLoader?

I updated my android SDK to the latest version, and now it says that startManagingCursor() is deprecated. I need help …

android cursor android-cursorloader