Top "Android-loadermanager" questions

An abstract class associated with an Activity or Fragment for managing one or more Loader instances.

Loaders and onLoaderReset Android

I implemented a Loader in my application for querying data from the database. I listen the changes that happen' by …

android loader android-loadermanager
Can you use a LoaderManager from a Service?

I have a data loading system set up using a custom Loader and Cursor that is working great from Activities …

android android-fragments android-service android-loadermanager
Data out of sync between a custom CursorLoader and a CursorAdapter backing a ListView

Background: I have a custom CursorLoader that works directly with SQLite Database instead of using a ContentProvider. This loader works …

android android-loadermanager android-cursorloader asynctaskloader android-loader
SimpleCursorAdapter's old constructor deprecated.. really?

Here it says that SimpleCursorAdapter's API level 1 constructor is deprecated and the use of LoaderManager and CursorLoader is recommended. But …

android sqlite uri android-contentprovider android-loadermanager
Android 3.0 - what are the advantages of using LoaderManager instances exactly?

With 3.0 we got the fancy LoaderManager, which handles data loading using the AsyncTaskLoader, the CursorLoader, and other custom Loader instances. …

android android-asynctask android-loadermanager android-cursorloader
getLoaderManager in ListActivity

I wish to implement a Loader for in a ListActivity but the activity do not recognize getLoaderManager. @Override public void …

android listactivity android-loadermanager
Android TabsAdapter with ActionbarSherlock

I am using ActionbarSherlock with a SherlockListFragment that implements LoaderManager.LoaderCallbacks. In my ApplicationActivity onCreate method I am using setContentView(…

android android-fragments android-viewpager android-loadermanager android-loader
OnLoadFinished() called twice

I'm trying to figure out if I'm doing something wrong with respect to Loaders. I'm using the support library, and …

android android-fragments loader android-fragmentactivity android-loadermanager
Should Loaders be used to access web services?

For what I understand, the Loader framework is geared towards accessing data stored locally in a ContentProvider / SQLite database. We …

android android-loadermanager android-loader