[android-beginners] Re: Threading with UI components

2009-06-03 Thread Don Oleary
Thanks for your help on this. I managed to stick with the original AsyncTask and push more operations off to a different thread so the UI is far more responsive. Thanks again Don On Fri, May 29, 2009 at 12:58 AM, Yousuf wrote: > > Here is an approach that we took since AsyncTask didn't totall

[android-beginners] Re: Threading with UI components

2009-06-01 Thread Yousuf
Here is an approach that we took since AsyncTask didn't totally satisfy our needs. We added our own AbstractAsyncTask that extended AsyncTask and added a field to it of our own type called CallbackHandler. CallbackHandler is an interface that has 2 methods, onSuccess(Result result) onFailure(Exc

[android-beginners] Re: Threading with UI components

2009-06-01 Thread marak...@gmail.com
Hey don, Im still playing around with the threading atm, but here`s an article that may help you out a bit. http://developer.android.com/guide/appendix/faq/commontasks.html#threading Hope that helps mate, Marak On May 27, 8:58 am, Don Oleary wrote: > Hi guys > > I have a question around threa