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
List> lstItems;
lstItems contains all the list item, which is loaded in the listview. From the listView click listener you will get the position of the selected item. Suppose it is i. Then you can take that item from lstItems.
private void lv_ItemClick(object sender, AdapterView.ItemClickEventArgs e) {
Dictionary selectedItem=lstItems.get(e.Position);
// toast necessary information using selectedItem object
}