私はmono andriod ListViewを使用しています。私のリストビューには2つのテキストビューと1つの画像が含まれています
そして私の次のコードは動作します
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();
};
しかし、リストビュー内にボタンを配置すると、このイベントが機能せず、ボタンクリックで作業できません。モノアンドリオドでリストビュー内のボタンクリックを処理する方法