List of usage examples for android.os AsyncTask subclass-usage
From source file ie.programmer.catcher.browser.AsyncTasks.AsyncMoveTask.java
/** * AsyncTask that moves the specified file/folder recursively to a new location. * * @author Saravan Pantham */ public class AsyncMoveTask extends AsyncTask<String, Void, Boolean> {
From source file com.android.erowser.FetchUrlMimeType.java
/**
* This class is used to pull down the http headers of a given URL so that
* we can analyse the mimetype and make any correction needed before we give
* the URL to the download manager. The ContentValues class holds the
* content that would be provided to the download manager, so that on
* completion of checking the mimetype, we can issue the download to
From source file com.data.RetrieveDataTask.java
public class RetrieveDataTask extends AsyncTask { private final Bus eventsBus; @Inject public RetrieveDataTask(Bus eventsBus) {
From source file com.thingsee.tracker.REST.KiiCreateUserRequestAsyncTask.java
public class KiiCreateUserRequestAsyncTask extends AsyncTask<String, Integer, String> { private static final String LOG_TAG = "Tracker/KiiCreateUser"; private HttpClient mHttpClient; private String mAppId;
From source file com.aniruddhc.acemusic.player.AsyncTasks.AsyncDeleteTask.java
public class AsyncDeleteTask extends AsyncTask<String, Void, Boolean> { private Context mContext; private ProgressDialog pd; private FilesFoldersFragment mFragment; private File mSourceFile;
From source file com.teocci.utubinbg.JsonAsyncTask.java
/** * AsyncTask for acquiring search suggestion in action bar * Created by Teocci on 19.2.16.. */ public class JsonAsyncTask extends AsyncTask<String, Void, ArrayList<String>> {
From source file com.partytv.server.GeoCoderTask.java
/** * This class provides Geocoding services through the Google Maps APIs. */ public class GeoCoderTask extends AsyncTask<String, Void, GeoResponse> { // URL prefix to the geocoder private static final String GEOCODER_REQUEST_PREFIX_FOR_JSON = "//maps.googleapis.com/maps/api/geocode/json";
From source file com.martineve.mendroid.task.MendeleyAPITask.java
public class MendeleyAPITask extends AsyncTask<Object, Integer, JSONArray[]> { private MendeleyConnector m_connect; private Dialog d_progress; private Context c_context; private Exception e_exception;
From source file com.android.browser.FetchUrlMimeType.java
/**
* This class is used to pull down the http headers of a given URL so that
* we can analyse the mimetype and make any correction needed before we give
* the URL to the download manager. The ContentValues class holds the
* content that would be provided to the download manager, so that on
* completion of checking the mimetype, we can issue the download to
From source file com.moarub.kipptapi.CreateClip.java
public class CreateClip extends AsyncTask<String, Void, HttpResponse> { private String fClipUrl; private ClipCreatedListener fListener; private String fNote; private boolean fReadLater;