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 asynctasks.LoadTaskTicketDataAsync.java

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

    private Context context;
    FragmentManager fm;

    private ProgressDialog pDialog;

From source file com.eyekabob.util.JSONTask.java

public abstract class JSONTask extends AsyncTask<String, Void, JSONObject> {
    private String requestType;

    public JSONTask() {
        super();
    }

From source file com.urucas.raddio.services.RequestTask.java

public class RequestTask extends AsyncTask<String, String, String> {

    protected RequestTaskHandler rsh;
    protected JSONRequestTaskHandler jrsh;

    public RequestTask(RequestTaskHandler _rsh) {

From source file com.softwaresemantics.diyglsllwp.InternetAsyncShaderTask.java

public class InternetAsyncShaderTask extends AsyncTask<String, Void, String> {

    private static final String CODE = "code";
    private ShaderGalleryActivity parentActivity;
    private int rowIndex;

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

public class LoginTask extends AsyncTask<String, Void, TokenResult> {
    private ProgressDialog dialog;
    private String username, fault;
    private Context context;
    private String TAG;

From source file rpi.rpiface.GetAsyncTask.java

/**
 * Copyright (C) 2013 Javier Garca, Julio Alberto Gonzlez
 * <p>
 * This file is part of Rpi-Face. Rpi-Face is free software: you can
 * redistribute it and/or modify it under the terms of the GNU General Public
 * License as published by the Free Software Foundation, either version 3 of the

From source file rpi.rpiface.PostAsyncTask.java

/**
 * Copyright (C) 2013 Javier Garca, Julio Alberto Gonzlez
 * <p>
 * This file is part of Rpi-Face. Rpi-Face is free software: you can
 * redistribute it and/or modify it under the terms of the GNU General Public
 * License as published by the Free Software Foundation, either version 3 of the

From source file com.example.qrpoll.Refresh.java

/**
 * 
 * @author Sliwka
 *Klasa sprawdzajaca, czy ankieta na stronie nie zostala zaktualizowana, wykorzystuje AsyncTask
 */
public class Refresh extends AsyncTask<Void, Void, Void> {

From source file org.muckebox.android.net.PreannounceTask.java

public class PreannounceTask extends AsyncTask<Integer, Void, Void> {
    @Override
    protected Void doInBackground(Integer... trackIds) {
        for (int i = 0; i < trackIds.length; ++i) {
            int trackId = trackIds[i];
            MuckeboxHttpClient httpClient = null;

From source file org.ambient.rest.SetCurrentClimateProfileTask.java

/**
 * @author Florian Bornkessel
 *
 */
public class SetCurrentClimateProfileTask extends AsyncTask<String, Void, Void> {