[android-developers] Just a concern on Async Task

2010-11-22 Thread umakantpatil
Hey, I just have a concern about AsycnTask. If i have one activity which starts a async task. Now that activity goes in background and new activity gets opened & visible to us. So the async task opened by previous activity stops or it still keeps going in background or it pauses or stops ? --

Re: [android-developers] Just a concern on Async Task

2010-11-22 Thread Mark Murphy
The AsyncTask's background thread will keep running, and so doInBackground() should run to completion. Work in publishProgress() and onPostExecute() may be delayed until the activity is resumed -- I have not tried that scenario. On Mon, Nov 22, 2010 at 10:21 AM, umakantpatil wrote: > Hey, > > I j