I implemented the async incoming data on a separate thread which adds the items to a Vector that is connected to the view through my custom adapter (inherits BaseAdapter). When new items come in the list does not update, unless I scroll it with my finger to signal a redraw. I tried lots of things... even storing the ListView and trying to force it to redraw. notifyDataSetChanged() doesn't work. Nothing seems to work. The list insists on not updating. Any suggestions? Thanks
On Oct 29, 12:28 am, tauntz <[EMAIL PROTECTED]> wrote: > Try notifyDataSetChanged() - it has no documentation but it seems to > do what you want. > > Tauno > > On Tue, Oct 28, 2008 at 9:21 PM,Emery<[EMAIL PROTECTED]> wrote: > > > How does the ArrayAdapter know when the array has been modified? I am > > using my own adapter, and I want to add items as they come in while > > asynchronously updating the ListView displaying them. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

