Xamarin不再认可任何项目

时间:2016-11-25 21:59:56

标签: xamarin

今天我正在开展几个项目并没有错。突然,Xamarin不再理解任何项目了。什么都没有改变。它只是说我犯了错误。

using Android.OS;       
using Android.App;     
using Android.Widget;   
using Android.Graphics; 

[ActivityAttribute(Label = "Hello", MainLauncher = true)]
public class HelloApp : Activity
{
protected override void OnCreate(Bundle b)
{
    MainActivity.OnCreate(base, b);

    TextView screen;
    screen = new TextView(this);
    screen.Text     = "Hello!";
    screen.TextSize = 80;
    screen.SetBackgroundColor(Color.Yellow);
    screen.SetTextColor      (Color.DarkBlue);

    this.SetContentView(screen);
    }
}

所以' b'参数名称在基本声明中有所不同名称' MainActivity'在当前上下文中不存在。使用关键字' base'在这种情况下无效。

我所做的,我所在的项目(工作内容)并不重要。没有任何作品了。有谁知道出了什么问题?

1 个答案:

答案 0 :(得分:0)

试试这个:

protected override void OnCreate(Bundle savedInstanceState)
{
  base.OnCreate(savedInstanceState);
}