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.akoscz.youtube.GetYouTubePlaylistAsyncTask.java

/**
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * <p/>
 * http://www.apache.org/licenses/LICENSE-2.0

From source file com.desarrollodroide.youtubeincardlibs.extrasyoutube.GetYouTubePlaylistAsyncTask.java

/**
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * <p/>
 * http://www.apache.org/licenses/LICENSE-2.0

From source file com.krayzk9s.imgurholo.tools.CommentsAsync.java

/**
 * Copyright 2013 Kurt Zimmer
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file com.pentacog.mctracker.SaveServerListTask.java

/**
 * @author Affian
 *
 */
public class SaveServerListTask extends AsyncTask<ArrayList<Server>, Void, Void> {

From source file asynctasks.AddTicketDataAsync.java

public class AddTicketDataAsync extends AsyncTask<String, Void, JSONObject> {

    private ProgressDialog pDialog;
    private JSONSerializer jSerial = new JSONSerializer();
    private String addTicketUrl = "http://www.chumlychum.com/valet/valetapi/addticket.php";

From source file org.service.TaskInsert.java

/**
 *
 * @author Luis Gumucio
 */
public class TaskInsert extends AsyncTask<String, Void, Boolean> {

From source file com.ascenttechnovation.geoecho.async.CheckLoginValidityAsyncTask.java

/**
 * Created by ADMIN on 24-06-2015.
 */
public class CheckLoginValidityAsyncTask extends AsyncTask<String, Void, Boolean> {

    Context context;

From source file com.sanjaydalvi.spacestationlocator.LoadISSLocation.java

public class LoadISSLocation extends AsyncTask<HttpUriRequest, Void, String> {
    private static final String TAG = "Space Station Locator";
    public static final String HTTP_RESPONSE = "httpResponse";

    private Context mContext;
    private HttpClient mClient;

From source file com.ilearnrw.reader.tasks.ProfileTask.java

public class ProfileTask extends AsyncTask<String, Void, String> {
    private ProgressDialog dialog;
    private Context context;
    private OnProfileFetched profileListener;
    private OnHttpListener asyncListener;

From source file io.v.positioning.gae.ServletPostAsyncTask.java

public class ServletPostAsyncTask extends AsyncTask<Context, Void, String> {
    // Google App Engine URL where the "backend" is deployed
    // Servlets are located in Positioning/backend/src/main/java/io.v.positioning
    private static final String GAE_URL = "festive-cirrus-100020.appspot.com";
    private URL mUrl;
    private JSONObject mData;