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.vsmjsc.rdgt.task.ListenCodeVerifier.java

public class ListenCodeVerifier extends AsyncTask<Void, Integer, Boolean> {

    private String RadioCode;

    public ListenCodeVerifier(String radioCode) {
        RadioCode = radioCode;

From source file com.krayzk9s.imgurholo.tools.Fetcher.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 geert.stef.sm.beheerautokm.AddRitTask.java

/**
 * Created by Stef on 9-4-2015.
 */
@TargetApi(Build.VERSION_CODES.CUPCAKE)
public class AddRitTask extends AsyncTask {

From source file com.krayzk9s.imgurholo.tools.NewAlbumAsync.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.clearner.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.ijiaban.uitls.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.codejune.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 me.sandrin.xkcdwidget.GetJsonTask.java

public class GetJsonTask extends AsyncTask<String, Void, String> {
    @Override
    protected String doInBackground(String... params) {

        String url = params[0];
        String jsonText = null;

From source file com.krayzk9s.imgurholo.tools.LoadImageAsync.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.pdi.hybridge.boilerplate.action.InitTask.java

public class InitTask extends AsyncTask<Object, Void, JSONObject> {

    private final String mTag = "InitTask";
    private JsPromptResult mResult;
    private Context mContext;
    private HybridgeBroadcaster mHybridge;