i use a mono andriod ListView ,my listview contains 2 textview and one Image
and my following code works
listView.ItemClick += (sender, e) =>
{
//Get our item from the list adapter
var item = this.listAdapter.GetItemAtPosition(e.Position);
//Make a toast with the item name just to show it was clicked
Toast.MakeText(this, item.Name + " Clicked!", ToastLength.Short).Show();
};
But when i put a button inside Listview,then this event not works and i am not able to work on button click.so how i handle Button click inside Listview in Mono andriod