Android and IOS does not use MVVM pattern like WP7 does. They use MVC pattern instead, which does not support bindings in the same way. So in your controller you will have to listen for changes to the the Collections and update the Views manually. There is an attempt to get MVVM bindings to Android in this project, but I don't know whether there is a Mono for Android version.
More info here: http://www.codeproject.com/Articles/145203/Android-Binding-Introduction http://stackoverflow.com/questions/4972927/android-mvvm-design-pattern-examples On Sat, Feb 25, 2012 at 10:37 PM, Damian J. <[email protected]> wrote: > Hi, > I'm new user of MonoTouch. My app (wp7) have ListBox where ItemSource is > ObservableCollection<MyClass>. > Best benefit of this mechanism is INotifyProperyChanged and > INotifyCollectionChanged. Any change in collection or objects in collection > will auto "populated" to ListBox. > How to achieve similar functionality in TableView and List<> as datasource > with minimum work? Have in IOS SDK any solution for that scenario? Thx for > any help, links or turn me in good direction:) > > Damian > _______________________________________________ > MonoTouch mailing list > [email protected] > http://lists.ximian.com/mailman/listinfo/monotouch -- Med Venlig Hilsen / With Best Regards Tomasz Cielecki http://ostebaronen.dk _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
