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 de.incoherent.osaac.tasks.LoadHolidaysTask.java

public class LoadHolidaysTask extends AsyncTask<Void, Void, Boolean> {
    private Database mDb;
    private ProgressDialog mDialog = null;
    private WeakReference<MainActivity> mActivity = null;

    public LoadHolidaysTask(MainActivity activity) {

From source file com.citrus.asynch.GetBill.java

/**
 * @deprecated in v3
 * <p/>
 * This class is not longer supported.
 */
@Deprecated

From source file com.madgag.agit.RepoDeleter.java

public class RepoDeleter extends AsyncTask<Void, Void, Void> {

    public static final String TAG = "RepoDeleter";

    private final File gitdir;
    private final Context context;

From source file com.podnoms.android.podcatcher.auth.AbstractGoogleApiTask.java

/**
 * Display personalized greeting. This class contains boilerplate code to consume the token but
 * isn't integral to getting the tokens.
 */
public abstract class AbstractGoogleApiTask extends AsyncTask<Void, Void, String> {

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

public class KiiGetUserInfoAsyncTask extends AsyncTask<String, Integer, LinkedHashMap<String, String>> {

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

    private HttpClient mHttpClient;
    private String mAppId;

From source file jp.bugscontrol.github.GithubTask.java

public class GithubTask extends AsyncTask<Void, Void, Void> {
    private final String method;
    private String response;

    private TaskListener listener;

From source file no.norrs.projects.andronary.tasks.DictListTask.java

/**
 *
 * @author Roy Sindre Norangshol <roy.sindre@norangshol.no>
 */
public class DictListTask extends AsyncTask<String, Void, String[]> {

From source file at.alladin.rmbt.android.util.CheckNewsTask.java

public class CheckNewsTask extends AsyncTask<Void, Void, JSONArray> {

    private final RMBTMainActivity activity;

    private JSONArray newsList;

From source file cn.edu.szjm.service.PostRecordTask.java

public class PostRecordTask extends AsyncTask<Object, Void, Integer> {
    private static final String RESTAPI_INTERFACE_POSTRECORD = "/records/add.json";
    private Activity activity;
    private InputStream in;
    private String news;
    private KaixinRequestListener requestListener;

From source file com.mb.kids_mind.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 = "MainActivity";