List of usage examples for android.os AsyncTask subclass-usage
From source file com.example.android.camera2basic.AgeGender.java
/**
* Copyright 2015 IBM Corp. All Rights Reserved.
* <p/>
* 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/>
From source file me.ziccard.secureit.async.upload.DelegatedPositionUploaderTask.java
public class DelegatedPositionUploaderTask extends AsyncTask<Void, Void, Void> { /** * Latitude of the last position to be uploaded */ protected double lat;
From source file com.example.android.camera2basic.RecognizeText.java
/**
* Copyright 2015 IBM Corp. All Rights Reserved.
* <p/>
* 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/>
From source file jp.co.rakuten.rakutenvideoplayer.api.Api_RequestOauth.java
/** * * @author nguyenvantu * */ public class Api_RequestOauth extends AsyncTask<List<NameValuePair>, String, Model_RequestOauth> {
From source file jp.co.rakuten.rakutenvideoplayer.api.Api_reRequestOauth.java
/** * * @author nguyenvantu * */ public class Api_reRequestOauth extends AsyncTask<List<NameValuePair>, String, Model_RequestOauth> {
From source file com.grinnellplans.plandroid.LoginTask.java
public class LoginTask extends AsyncTask<String, Void, String> { private HttpContext _httpContext; private SessionService _ss; public LoginTask(HttpContext clientContext, SessionService sessionService) { _httpContext = clientContext;
From source file net.evecom.android.util.HttpMultipartPost.java
/**
*
* HttpMultipartPost
* @author Mars zhang
* @created 2014-11-5 10:56:31
*/
From source file com.commonsware.android.qrck.JSONLoadTask.java
public class JSONLoadTask extends AsyncTask<String, Void, JSONObject> { private Context ctxt = null; private Listener listener = null; private Exception ex = null; public JSONLoadTask(Context ctxt, Listener listener) {
From source file com.lgallardo.qbittorrentclient.GeneralInfoTask.java
/** * Created by lgallard on 07/06/16. */ // // Here is where the action happens public class GeneralInfoTask extends AsyncTask<String, Void, ArrayList<GeneralInfoItem>> {
From source file com.parking.auth.LoginUserAsyncTask.java
public class LoginUserAsyncTask extends AsyncTask<String, Void, Boolean> { DefaultHttpClient http_client = new DefaultHttpClient(); private static final String TAG = LoginUserAsyncTask.class.getSimpleName(); private boolean result = false; private AsyncTaskResultNotifierInterface notifier = null;