Skip to content

Instantly share code, notes, and snippets.

View devriesm's full-sized avatar

Mark DeVries devriesm

View GitHub Profile
@devriesm
devriesm / ListAsyncTaskLoader
Last active November 12, 2016 23:16
Base Android AsyncTaskLoader for list data with common functionality like paging.
package net.markdevries.loader;
import java.util.ArrayList;
import java.util.List;
import android.content.Context;
import android.support.v4.content.AsyncTaskLoader;
public class ListAsyncTaskLoader<D> extends AsyncTaskLoader<List<D>>
{