[android-developers] Async Task, rotation and indeterminate progressbar in custom header.

2011-09-23 Thread Bluemercury
Hi! So i've been trying to get a solution for a very specific problem that involves using Async tasks and dealing with the rotation and also a custom header that contains a progressbar view(the small spinner one, including a text view saying Loading...). I've followed

[android-developers] Async Task

2011-07-02 Thread naveen kumar
hi all, i have multiple long process for one activity, i want to many process with multiple thread in android. i want to use Async task please help me Async task Simultaneous handle multiple process or One activity is able to execute more than one async task or one Activity have only one async

Re: [android-developers] Async Task

2011-07-02 Thread NaveenShrivastva
On Sat, Jul 2, 2011 at 3:20 PM, naveen kumar kumarnaveen.si...@gmail.comwrote: hi all, i have multiple long process for one activity, i want to many process with multiple thread in android. i want to use Async task please help me Async task Simultaneous handle multiple process or One

[android-developers] Async Task or Spawn a Thread?

2011-05-07 Thread Droid
Seems I can use an async task OR roll my own thread to do a background task. Is one better than the other? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] Async Task or Spawn a Thread?

2011-05-07 Thread Kostya Vasilyev
07.05.2011 19:53, Droid пишет: Seems I can use an async task OR roll my own thread to do a background task. Is one better than the other? Not better, mostly just plug into the rest of your code somewhat differently. AsyncTask provides helpers methods, like onPreExecute, onProgressUpdate,

Re: [android-developers] Async Task or Spawn a Thread?

2011-05-07 Thread Ralph Bergmann
Am 07.05.11 17:53, schrieb Droid: Is one better than the other? yes, but it depends on what you want to do if you only want a background task you can do it a thread. if your task acts with the ui you can do it with both but it is easier with the asynctask (your thread vs. ui thread)

[android-developers] Async Task Problem

2009-08-28 Thread glory
Hi All, I am facing the problem of timelag between execution of onPreExecute() and execution of doInbackground(String... params).On postExecute() of the Asyc task I am starting a service. First time when I am executing the async task it is working fine but If I again executing the same Async