我已经在 C# 中实现了 SimpleListView1 布局,并且需要在列表中添加一个按钮,以便我回家。由于在这种情况下没有我能够编辑的 XML,我正在寻找有关如何解决这个小困境的想法。
namespace SOA_App
{
[Activity(Label = "BasicTable")]
public class SOAList_ListView : ListActivity {
string[] items;
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
items = new string[] { "Vegetables","Fruits","Flower Buds","Legumes","Bulbs","Tubers" };
ListAdapter = new ArrayAdapter<String>(this, Android.Resource.Layout.SimpleListItem1, items);
}
protected override void OnListItemClick(ListView l, View v, int position, long id)
{
var t = items[position];
Android.Widget.Toast.MakeText(this, t, Android.Widget.ToastLength.Short).Show();
}
}
}