I saw a strange problem, in LoaderCallbacks' onLoadFinished() I called a method on a null pointer, but I didn't get any exception, and the app quit directly. It took me a lots of time to debug. Did any one saw this already?
public class ForecastFragment extends Fragment
implements LoaderManager.LoaderCallbacks<Cursor>
{
//...
@Override
public void onLoadFinished(android.support.v4.content.Loader<Cursor> loader, Cursor data) {
//here, by accident mForecastAdapter is null, but I get 0 exception, the app quits
mForecastAdapter.swapCursor(data);
}
@Override
public void onLoaderReset(android.support.v4.content.Loader<Cursor> loader) {
mForecastAdapter.swapCursor(null);
}
}