Re: [android-developers] Re: How to continously updating data from XML

2012-01-25 Thread Kristopher Micinski
You can look at some AsyncTask examples, but really, you should also put some interest into this: http://developer.android.com/guide/topics/fundamentals/loaders.html This was introduced in 3.0 (which I haven't gotten as much of a chance to play around with as I should have yet). I think that Mar

[android-developers] Re: How to continously updating data from XML

2012-01-25 Thread Cheah Peng Huat
Thank you for your reply. Any example code i can refer to? On Jan 17, 10:27 am, Kristopher Micinski wrote: > To go along with that, you can't directly update the UI from a random > thread, and you need to look into a Messenger, then do something like > fill the buffer in one thread (perhaps an As