Re: [mono-android] DataSetObservable missing public methods

2011-09-09 Thread Jonathan Pryor
On Sep 9, 2011, at 12:28 AM, riteshsahu wrote: > Another question is that when I implement ISpinnerAdapter, one of the > properties in the interface is public IntPtr Handle{get;} > > What should I return here? You should inherit from Java.Lang.Object, as it implements IJavaObject for you.

Re: [mono-android] DataSetObservable missing public methods

2011-09-08 Thread riteshsahu
Another question is that when I implement ISpinnerAdapter, one of the properties in the interface is public IntPtr Handle{get;} What should I return here? -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/DataSetObservable-missing-public-methods-tp4781634p478

Re: [mono-android] DataSetObservable missing public methods

2011-09-08 Thread riteshsahu
Thanks Jon. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/DataSetObservable-missing-public-methods-tp4781634p4784917.html Sent from the Mono for Android mailing list archive at Nabble.com. ___ Monodroid mailing list Mono

Re: [mono-android] DataSetObservable missing public methods

2011-09-08 Thread Jonathan Pryor
On Sep 8, 2011, at 4:05 AM, riteshsahu wrote: > I am trying to implement the ISpinnerAdapter and for that was trying to > register the Observer. It seems the Android.Database.DataSetObservable is > missing the public methods, specifically RegisterObserver and > UnregisterObserver. It only seems

[mono-android] DataSetObservable missing public methods

2011-09-08 Thread riteshsahu
I am trying to implement the ISpinnerAdapter and for that was trying to register the Observer. It seems the Android.Database.DataSetObservable is missing the public methods, specifically RegisterObserver and UnregisterObserver. It only seems to have the UnregiserAll method for some reason. Am I m