答案 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/