Hello, I assume you dare ask ObservableCollection-specific question (if not, then SimpleAdapter and Android.Runtime.JavaList<T> would be for you). Then my answer is, no you can use only adapters that do not involve property/collection change notifications. Android.Widgets are not Silverlight and they are only thin wrapper for android.widget API, which does not provide property change notification via INotifyCollectionChanged / INotifyPropertyChanged. In other words, things in Silverlight works because their UI controls (unlike android ones) are aware of those collections.
There may be chance for interesting hacking for ObservableCollection with DataSetObserver to work with the collection, but so far I don't know any of such samples. (Actually I'm not familiar with those API, so, sorry if I am missing the point.) Atsushi Eno On 2011/08/06 3:20, G. Völkl wrote: > > Hi, > > I want to show an ObservableCollection in a ListView. > > Which Adapter class could I use? > > Any Samples? > > Gerhard > > > eMail: [email protected] <mailto:[email protected]> > > Web: www.nelson-games.de\gkvoelkl\ > > _________________________________________________________________________ > This communication is confidential and may be legally privileged. If > you are not the intended recipient, (i) please do not read or disclose > to others, (ii) please notify the sender by reply mail, and (iii) > please delete this communication from your system. Failure to follow > this process may be unlawful. Thank you for your cooperation. > _________________________________________________________________________ > Gerhard Völkl, Hollerweg 3, 93080 Pentling, Germany > _________________________________________________________________________ > > > _______________________________________________ > Monodroid mailing list > [email protected] > > UNSUBSCRIBE INFORMATION: > http://lists.ximian.com/mailman/listinfo/monodroid _______________________________________________ Monodroid mailing list [email protected] UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid
