Example usage for android.os AsyncTask subclass-usage

List of usage examples for android.os AsyncTask subclass-usage

Introduction

In this page you can find the example usage for android.os AsyncTask subclass-usage.

Usage

From source file com.etime.LoginAsyncTask.java

/**
 * User: dpayne2
 * Date: 1/5/12
 * Time: 12:02 PM
 */
public class LoginAsyncTask extends AsyncTask<String, Integer, Boolean> implements ETimeAsyncTask {

From source file com.thingsee.tracker.REST.KiiCreateObjectRequestAsyncTask.java

public class KiiCreateObjectRequestAsyncTask extends AsyncTask<String, Integer, String> {

    private static final String LOG_TAG = "Tracker/KiiCreateObject";

    private HttpClient mHttpClient;
    private String mAppId;

From source file com.givon.baseproject.xinlu.util.UploadMoreImageTask.java

public class UploadMoreImageTask extends AsyncTask<Object, Void, ArrayList<DetailImages>> {
    int total;
    private int type;
    ArrayList<String> error = new ArrayList<String>();
    private UpLoadListener upLoadListener;
    private static final String TEST_API_IMAGE_KEY = "lVBfg35QWT+r/LMFsoJjiQ5deno="; // ?api?

From source file com.android.browser.kai.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 fr.free.pierre.reliquet.trackit.utils.InformationFinder.java

/**
 * @author Pierre Reliquet
 */
public class InformationFinder extends AsyncTask<String, Void, String> {

    private static final String END_PATTERN = "</h3>";

From source file com.achie.tv.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.example.firstapp.AbstractGetNameTask.java

/**
 * Display personalized greeting. This class contains boilerplate code to
 * consume the token but isn't integral to getting the tokens.
 */
public abstract class AbstractGetNameTask extends AsyncTask<Void, Void, Void> {
    private static final String TAG = "TokenInfoTask";

From source file be.uclouvain.multipathcontrol.stats.JSONSenderTask.java

public class JSONSenderTask extends AsyncTask<JSONSender, Void, Collection<String>> {

    private SharedPreferences settings;
    private StatsCategories category;
    private HttpClient httpClient;

From source file com.smedic.tubtub.JsonAsyncTask.java

/**
 * AsyncTask for acquiring search suggestion in action bar
 * Created by Stevan Medic on 19.2.16..
 */
public class JsonAsyncTask extends AsyncTask<String, Void, ArrayList<String>> {
    private static final String TAG = "SMEDIC JSON";

From source file ie.programmer.catcher.browser.AsyncTasks.AsyncCopyTask.java

/**
 * AsyncTask that copies the specified file/folder recursively to a new location.
 *
 * @author Saravan Pantham
 */
public class AsyncCopyTask extends AsyncTask<String, Void, Boolean> {