我有以下问题
我使用的代码如下:
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.Window);
Bla WebS = new Bla();
foreach (var item in WebS.Fetch(null, null, null))
{
var Params = new Android.Widget.LinearLayout.LayoutParams(Android.Widget.LinearLayout.LayoutParams.MatchParent,
Android.Widget.LinearLayout.LayoutParams.WrapContent);
Button b = new Button(this);
b.Text = item.Name;
b.Id = Convert.ToInt16(item.ID);
b.Click += new EventHandler(Soort_Click);
this.AddContentView(b, Params);
}
}
我不知道我在这里错过了什么?