我正在使用 monodroid 制作一个应用程序,并且我正在尝试开始一项新活动。
下面是我用来开始新活动的代码
var second = new Intent(this, typeof(CreateVehicle));
StartActivity(second);
这是创建车辆活动
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace BoostITAndroid.Android
{
[Activity(Label = "My Activity")]
public class CreateVehicle : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
// Create your application here
}
}
}
我的问题是我无法运行该应用程序,因为在意图 CreateVehicle 下划线红色并且它说它不存在。