I have a service I'm pulling data from and they suggest doing so every 5-10
seconds it's designed to be a near-real-time experience.  I'm currently
pulling this information down and displaying it in a ListView.  During the
initial load, I toss up a basic ProgressDialog so the user knows information
is being loaded.  However, introducing that automatically in such a short
increment of time would be an annoying user experience.

Is there a nice way to approach this problem in Android?  I'd like to be
able to run an update on the data I'm pulling from the web without
disrupting the end user's experience.  Ideally, not even disrupting them if
they happen to be scrolling the view.  The data itself will always be
additions to data that's already been pulled down, so essentially I'm adding
records to my Adapter every 5-10 seconds.

--
Chris Stewart
http://chriswstewart.com

-- 
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 unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to