[android-developers] Re: AsyncTask and progressUpdate()

2010-05-03 Thread MobDev
thanks for the answer Mark... Well the idea of the AsyncTask was to have a place where progress would be shown to a GUI element... And the onProgressUpdate() method oviously was very tempting ;) Anyhow, everything being asynchronous and thus not possible to implement within a doInBackgournd()

Re: [android-developers] Re: AsyncTask and progressUpdate()

2010-05-03 Thread Mark Murphy
MobDev wrote: thanks for the answer Mark... Well the idea of the AsyncTask was to have a place where progress would be shown to a GUI element... And the onProgressUpdate() method oviously was very tempting ;) Anyhow, everything being asynchronous and thus not possible to implement within a

[android-developers] Re: AsyncTask and progressUpdate()

2010-04-28 Thread MobDev
hhmm ok... So I guess it should be possible for example to make my own class extending AsyncTask and implementing callaback interfaces to it from the aforementioned modules, does that sound feasable/logical at all ? I was wondering though, because its somewhat asynchronous operations how should

Re: [android-developers] Re: AsyncTask and progressUpdate()

2010-04-28 Thread Mark Murphy
MobDev wrote: hhmm ok... So I guess it should be possible for example to make my own class extending AsyncTask and implementing callaback interfaces to it from the aforementioned modules, does that sound feasable/logical at all ? You shouldn't need that. The point of AsyncTask is to do things