[android-developers] Re: Views, ListViews and Adapters

2009-04-20 Thread Alan Jones
Hi Romain, On Apr 21, 12:37 am, Romain Guy wrote: > Use notifyDatasetChanged(), ListVIew *needs* it. It's also optimized > for cases in which the current set of Views hasn't changed. Just > remember to reuse the convertView in the getView() method and you'll > be fine. Market does that. Thanks

[android-developers] Re: Views, ListViews and Adapters

2009-04-20 Thread Romain Guy
Use notifyDatasetChanged(), ListVIew *needs* it. It's also optimized for cases in which the current set of Views hasn't changed. Just remember to reuse the convertView in the getView() method and you'll be fine. Market does that. On Mon, Apr 20, 2009 at 2:19 AM, Alan Jones wrote: > > Hi All, > >