无法在新创建的活动中编写SetContentView

时间:2016-04-07 10:12:56

标签: c# android xamarin

我是android / xamarin开发的新手。我创建了一个新活动,现在想把它与我的观点联系起来。

但我似乎无法编写SetContentView(它不存在)。

无法弄清楚这里发生了什么。

感谢enter image description here

1 个答案:

答案 0 :(得分:2)

SetContentView is in the namespace Android.App;

So add the following to your using clauses:

using Android.App;

And then you will be able to do something like:

SetContentView(Resource.Layout.Main);

Ref: http://developer.android.com/reference/android/app/Activity.html

Ref: https://developer.xamarin.com/api/member/Android.App.Activity.SetContentView/p/Android.Views.View/