Thanks for your elaborate answer. My code to get the selected item now looks
like this:
Java.Lang.Object o = spinner.SelectedItem;
string s = o.ToString();
o.Dispose();
Think this is the best was to do. For more complex list items I am already
deriving from BaseAdapter. I will continue to use the
On Aug 9, 2012, at 10:50 AM, subsembly wrote:
> I am trying to understand what exactly happens when I am using an
> Android.Widget.ArrayAdapter for my list views and spinners.
> Considering the following sample code from an Activity:
>
> string[] vs = new string[] { "one", "two", "three" }
> Ar
Hi all,
I am trying to understand what exactly happens when I am using an
Android.Widget.ArrayAdapter for my list views and spinners.
Considering the following sample code from an Activity:
string[] vs = new string[] { "one", "two", "three" }
ArrayAdapter aa = new ArrayAdapter(this,
Android.Resou