I am facing an issue with Loader.
I have an Activity, which displays list of records retrieved from local DB. When the activity starts, records are automatically loaded
In addition to RaB's answer, if you are using a custom Loader, make sure that if you call super if you overwrite deliverResult():
Loader
super
deliverResult()
@Override public void deliverResult(D data) { super.deliverResult(data); // <--onLoadFinished() will not be called if you don't call this ... }