如何在xamarin c中获取特定对象的特定项目onclick listview#

时间:2016-04-02 07:50:00

标签: c# android listview xamarin

我想在object.i上点击特定行时检索特定项目(即标题和子标题项目)。

  

var selectedTableItem = e.Parent.GetItemAtPosition(e.Position);

下面是code.Here我得到整个对象,但如何获取对象中的项目?。非常感谢

mTable

1 个答案:

答案 0 :(得分:0)

试试这个

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();
}

//Make a toast with the item name just to show it was clicked