android.content.AsyncTaskLoader Java Examples

The following examples show how to use android.content.AsyncTaskLoader. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ViewImageActivity.java    From wear-notify-for-reddit with Apache License 2.0 5 votes vote down vote up
@Override public Loader<Bitmap> onCreateLoader(int id, Bundle args) {
    return new AsyncTaskLoader<Bitmap>(this) {

        @Override protected void onStartLoading() {
            forceLoad();
        }

        @Override public Bitmap loadInBackground() {
            return readBitmapFromDisk(mImageName);
        }
    };
}
 
Example #2
Source File: AsyncTaskLoaderAssert.java    From assertj-android with Apache License 2.0 4 votes vote down vote up
public AsyncTaskLoaderAssert(AsyncTaskLoader actual) {
  super(actual, AsyncTaskLoaderAssert.class);
}