List of usage examples for android.content AsyncTaskLoader subclass-usage
From source file cn.edu.wyu.documentviewer.DirectoryResult.java
public class DirectoryLoader extends AsyncTaskLoader<DirectoryResult> { private static final String[] SEARCH_REJECT_MIMES = new String[] { Document.MIME_TYPE_DIR }; private final ForceLoadContentObserver mObserver = new ForceLoadContentObserver();
From source file com.appsimobile.appsii.module.calls.CallLogLoader.java
/** * A custom Loader that loads all of the installed applications. */ public class CallLogLoader extends AsyncTaskLoader<CallLogResult> { public static final String UNKNOWN_NUMBER = "-1";
From source file com.geniusgithub.contact.contact.model.ContactLoader.java
/** * Loads a single Contact and all it constituent RawContacts. */ public class ContactLoader extends AsyncTaskLoader<Contact> { private static final String TAG = ContactLoader.class.getSimpleName();
From source file com.android.contacts.common.model.ContactLoader.java
/** * Loads a single Contact and all it constituent RawContacts. */ public class ContactLoader extends AsyncTaskLoader<Contact> { private static final String TAG = ContactLoader.class.getSimpleName();
From source file cn.edu.nju.dapenti.activity.EditFeedActivity.java
/** * A custom Loader that loads feed search results from the google WS. */ class GetFeedSearchResultsLoader extends AsyncTaskLoader<ArrayList<HashMap<String, String>>> { private final String mSearchText;
From source file co.nerdart.ourss.activity.EditFeedActivity.java
/** * A custom Loader that loads feed search results from the google WS. */ class GetFeedSearchResultsLoader extends AsyncTaskLoader<ArrayList<HashMap<String, String>>> { private final String mSearchText;