The AsyncTask is an Android object which allows to run long-time tasks in background, without blocking the UI.

learn more… | top users | synonyms

35
votes
2answers
18k views

Download a file with Android, and showing the progress in a ProgressDialog

I am trying to write a simple application that gets updated. For this I need a simple function that can download a file and show the current progress in a ProgressDialog. I know how to do the ...
31
votes
6answers
3k views

Is AsyncTask really massively flawed or am I just missing something?

I have investigated this problem for months now, came up with different solutions to it, which I am not happy with since they are all massive hacks. I still cannot believe that a class that flawed in ...
26
votes
2answers
4k views

AsyncTask threads never die (Android)

I'm new to Android programming and I'm using AsyncTasks to fetch data in response to the user pressing a button. This works well and keeps the interface responsive while fetching the data, but when I ...
25
votes
4answers
5k views

Android - AsyncTask and error handling

I'm converting my code from using Handler to AsyncTask. The latter is great at what is does - async updates and handling of results in the main UI thread. What's unclear to me is how to handle ...
21
votes
6answers
9k views

Ideal way to cancel an executing AsyncTask

I am running remote audio-file-fetching and audio file playback operations in a background thread using AsyncTask. A Cancellable progress bar is shown for the time the fetch operation runs. I want ...
21
votes
4answers
5k views

How to handle an AsyncTask during Screen Rotation?

I read a lot on how to save my instance state or how to deal with my activity getting destroyed during screen rotation. There seem to be a lot of possibilities but I haven't figured out which one ...
14
votes
2answers
2k views

How to create an async method in C# 4 according to the best practices?

Consider the following code snippet: public static Task<string> FetchAsync() { string url = "http://www.example.com", message = "Hello World!"; var request = ...
12
votes
3answers
982 views

AsyncTaskLoader vs AsyncTask

Since Honeycomb and the v4 Compatibility Library it is possible to use AsyncTaskLoader. From what I understand, the AsyncTaskLoader can survive through config changes like screen flips. Is it ...
12
votes
3answers
15k views

Android AsyncTask context problem

I've been working with AsyncTasks in Android and I am dealing with a strange issue. Take a simple example, an Activity with one AsyncTask. The task on the background does not do anything spectacular, ...
10
votes
1answer
2k views

Android 3.0 - what are the advantages of using LoaderManager instances exactly?

With 3.0 we got the fancy LoaderManager, which handles data loading using AsyncTaskLoader/CursorLoader/some custom loader instances. But reading through the docs for these I just couldn't get the ...
10
votes
1answer
1k views

Android: AsyncTask ProgressDialog will not open in ActivityGroup

I am trying to have a a progress dialog open when polling my server. The class is an ActivityGroup because it is nested within a tab bar. To keep the view within the frame, the ActivityGroup is ...
9
votes
4answers
2k views

How would I run an async Task<T> method synchronously?

I'm learning about async/await, and ran into a situation where I need to call an async method synchronously. How can I do that? Async method: public async Task<Customers> GetCustomers() { ...
8
votes
2answers
3k views

AsyncTask doInBackground does not run

I'm having a problem with the AsyncTask class. It seems like my task stops working after creating 4 or 5 tasks. Im having 2 activities. MainActivity which only holds a button that starts a second ...
8
votes
4answers
10k views

Android ASync task ProgressDialog isn't showing until background thread finishes

I've got an Android activity which grabs an RSS feed from a URL, and uses the SAX parser to stick each item from the XML into an array. This all works fine but, as expected, takes a bit of time, so I ...
7
votes
1answer
141 views

What are the advantages/disadvantages on passing arguments to the AsyncTask constructor?

I am using AsyncTask and wondering what are the implications of passing the arguments to the constructor instead of passing them directly on the execute() call to the doInBackground(...) method, for ...
7
votes
1answer
632 views

AsyncTask Threading Rule - Can it really only be used once?

In the documentation on AsyncTask it gives the following as a rule related to threading: The task can be executed only once (an exception will be thrown if a second execution is attempted.) All ...
7
votes
5answers
7k views

ProgressDialog not working in external AsyncTask

I'm beginning to think that to get a ProgressDialog to work the AsyncTask has to be an inner class within an Activity class. True? [Edited much later...the answer is False and I'm not sure if this is ...
7
votes
5answers
2k views

I don't know when to use a Service or AsyncTask or Handler

Can someone tell me the TRUE difference?
6
votes
4answers
179 views

When the app goes to background during an AsyncTask execution what should it do?

I have an application that uses AsyncTasks to make calls to a REST server. Imagine that during a loading period (this is, the AsyncTask going to the REST server and gets data to the next screen) the ...
6
votes
2answers
753 views

Handler vs AsyncTask vs Thread

I got slightly confused about the differences between Handlers, AsyncTasks and Threads in Android. I've read quite a few blogs and questions here in stackoverflow. Handlers are background threads ...
6
votes
2answers
186 views

Question about .Net Tasks and the Async CTP

I'm experimenting with the Async CTP and liking it quite a bit. I did have a question from the whitepaper explaining it however. In it, it says: It is important to understand that async methods ...
6
votes
1answer
300 views

WaitAll vs WhenAll

What is the difference between Task.WaitAll() and TaskEx.WhenAll() from the Async CTP ? Can you provide some sample code to illustrate the different use cases ?
6
votes
3answers
2k views

Android AsyncTask won't stop when cancelled, why?

I've an AsyncTask that I shut down in the Activity's onPause lifecycle event, so it doesn't run when someone leaves the app, but it keeps going despite this. I added some tracing and this snippet ...
6
votes
1answer
1k views

Android Asynctask vs Runnable vs timertask vs Service

What are the differences between these methods (classes)? I want to run a app that runs every 5 seconds, clear the memory when it is finished and when the cpu is in standby mode, that you can run the ...
6
votes
2answers
6k views

AsyncTask and Looper.prepare() error

I have the following code class OverlayTask extends AsyncTask<Void, Void, Void> { @Override public void onPreExecute() { if (sites != null) { ...
6
votes
4answers
418 views

Is there a sophisticated Java WorkQueue API?

I am looking for a WorkQueue API offering the following features: java.util.Queue compatible offers (optional) Set-semantic single- and batch-processing concurrency (of course) scheduling different ...
6
votes
2answers
4k views

Android: How can I pass parameters to AsyncTask's onPreExecute()?

I use an AsyncTask for loading operations that I implemented as an inner class. In onPreExecute() I show a loading dialog which I then hide again in onPostExecute(). But for some of the loading ...
5
votes
1answer
270 views

The difference between Task.Factory.FromAsync and BeginX/EndX?

I have very similar code when using the standard BeginRead and EndRead methods from the TcpClient and using Task.Factory.FromAsync. Here are some examples.. Error handling code not shown. ...
5
votes
2answers
288 views

Design pattern for catching unhandled exceptions in AsyncTask

Folks, I catch unhandled Android exceptions via a code snippet like this, at the top of onCreate: try { File crashLogDirectory = new ...
5
votes
3answers
2k views

AsyncTask return value

My android app connects to my website to retrieve and upload information so I use an AsyncTask thread. In one instance, I need my thread to return a true or a false value to my main thread. Is there ...
5
votes
2answers
1k views

connecting to a webservice from android - AsyncTask or Service?

I'm writing an android app that will connect to a REST/JSON webservice. Users will be retrieving information, uploading comments, downloading and uploading images etc. I know that I shouldn't keep ...
5
votes
4answers
771 views

Android app architecture - where to put REST API call code?

I want to better understand how to structure an Android app where an activity fires off an API call (for example). I'd currently implement it by putting the API call into an AsyncTask subclass, ...
5
votes
2answers
1k views

Cancelling file download with httpclient and asynctask

In my app I need to download files from url locations. I want to display progress of the download in a dialogbox (or optionally in the notification area). I've come across several good resources on ...
5
votes
1answer
2k views

AsyncTask Android - Design Pattern and Return Values

I'm writing an application that validates login credentials on an external webserver - so I have the basic issue of creating a login screen that when submitted will send an HTTP request to a server in ...
5
votes
3answers
4k views

Show a progress bar when an Activity is loading

I have a ListActivity which launches another Activity based on the list selection. This second Activity needs to load a fair bit of data from the internet and as such there is a noticeable delay ...
5
votes
2answers
6k views

progressDialog in AsyncTask

I'm trying to display a custom progressdialog while loading rss feed from http server, I made a hard search, but nothing helped me to do this, the only thing i know is that the solution should use ...
5
votes
2answers
2k views

onPostExecute not called after completion AsyncTask

For some reason my onPostExecute() is not called after my AsyncTask finishes. My class decleration: public class setWallpaperForeground extends AsyncTask<String, Integer, Boolean> My ...
5
votes
1answer
8k views

Android : CalledFromWrongThreadException;: Only the original thread that created a view hierarchy can touch its views

I have an issue with the following error in Android: CalledFromWrongThreadException;: Only the original thread that created a view hierarchy can touch its views It appears to happen when I ...
5
votes
3answers
3k views

Android : Loading an image from the Web with Asynctask

How do I replace the following lines of code with an Asynctask ? How do you "get back" the Bitmap from the Asynctask ? Thank you. ImageView mChart = (ImageView) findViewById(R.id.Chart); String URL ...
4
votes
3answers
38 views

How to update ListView on scrolling while retrieving data from server in Android?

Currently, I'm using AsyncTask to handle Http connection and retrieve data as JSON format. Loading all data is trivial but it consumes too much time, so I decided to switch to load 10 items at a ...
4
votes
1answer
66 views

Continue Task after all tasks finish

In some class I want to load 2 collection asynchronously with Task and stop busyindicator I try Something like this var uiScheduler = TaskScheduler.FromCurrentSynchronizationContext(); ...
4
votes
1answer
47 views

Naming AsyncTask for profiling in Android

Is there any way to name AsyncTasks in Android for the purposes of profiling? As of now, the AsyncTasks only shows up in the profiler as [N] AsyncTask #1 [M] AsyncTask #2 [K] AsyncTask #3 [L] ...
4
votes
2answers
230 views

Android - Setting a Timeout for an AsyncTask?

I have an AsyncTask class that I execute that downloads a big list of data from a website. In the case that the end user has a very slow or spotty data connection at the time of use, I'd like to make ...
4
votes
2answers
69 views

Difference between OnlyOnRanToCompletion and NotOnFaulted?

These two values are from the TaskContinuationOptions enumeration. I'm a bit unsure of which one to use. Another pair I'm confused between is NotOnRanToCompletion and OnlyOnFaulted. The wording is a ...
4
votes
1answer
79 views

Android: Identify what code an AsyncTask is running

In Eclipse in the Debug window I see a thread that shows: Thread <16> AsyncTask #11 Is there a way to determine what actual section of code the AsyncTask is referring to? Is there something I ...
4
votes
3answers
333 views

Preloaded database corruption issue in Android application

I have an android application that begins by downloading a large database to the sdcard (a little over 50mb) in an asynctask. The download code is as follows. HttpURLConnection conexion = ...
4
votes
1answer
111 views

When would Activity's instance die?

Here is a sample code which make me a little missing: package com.leak; import android.app.Activity; import android.app.ProgressDialog; import android.os.AsyncTask; import android.os.Bundle; public ...
4
votes
3answers
2k views

Imageview and PagerAdapter

I want to put images in each pages of my ViewPager (like a book). Those images came from a list of url : My Adapter looks like this : private class MyPagerAdapter extends PagerAdapter{ ...
4
votes
2answers
177 views

AsyncTask thread still there after execute, is that normal?

when I use AsyncTasks checking in the DDMS, the thread persist in memory as waiting thread after the onPostExecute() method, is that normal?. Here is a simplified Activity that reproduces my problem: ...
4
votes
3answers
889 views

Show ProgressDialog while loading layout with setContentView

this is my scenario: I've got a login screen that opens another activity. In the Activity I simply have: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...

1 2 3 4 5 18