Back to project page whoisit-android.
The source code is released under:
MIT License
If you think the Android project whoisit-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.mitchbarry.android.whoisit.ui; //from w w w. ja va 2s.co m import android.content.Context; import android.support.v4.content.AsyncTaskLoader; /** * Loader which extends AsyncTaskLoaders and handles caveats as pointed out in * http://code.google.com/p/android/issues/detail?id=14944. * <p/> * Based on CursorLoader.java in the Fragment compatibility package * * @param <D> * data type * @author Alexander Blom (me@alexanderblom.se) */ public abstract class AsyncLoader<D> extends AsyncTaskLoader<D> { private D data; /** * Create async loader * * @param context */ public AsyncLoader(Context context) { super(context); } @Override public void deliverResult(D data) { if (isReset()) // An async query came in while the loader is stopped return; this.data = data; super.deliverResult(data); } @Override protected void onStartLoading() { if (data != null) deliverResult(data); if (takeContentChanged() || data == null) forceLoad(); } @Override protected void onStopLoading() { // Attempt to cancel the current load task if possible. cancelLoad(); } @Override protected void onReset() { super.onReset(); // Ensure the loader is stopped onStopLoading(); data = null; } }