in a Xamarin.Android app, I have a ListView which I previously populated.
In the listview_ItemClick event handler, which correctly fires, I would like to retrieve the text of t
void OnListItemClick(object sender, AdapterView.ItemClickEventArgs e)
{
var listView = sender as ListView;
var t = tableItems[e.Position];
Android.Widget.Toast.MakeText(this, t.Heading,
Android.Widget.ToastLength.Short).Show();
}