我使用一个单声道安卓列表视图,我的列表视图包含 2 个文本视图和一个图像
我的以下代码有效
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();
};
但是当我在 Listview 中放置一个按钮时,此事件不起作用,我无法处理按钮单击。所以我如何在 Mono andriod 中的 Listview 中处理按钮单击