欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

C# 使用Xamarin 开发应用 -- 切换Activity

程序员文章站 2022-03-22 23:48:32
...
通常每个Activity对应1个Layout,在onCreate时指定layout(否则引用的还是main的layout),然后调用startActivity:
protected override void OnCreate (Bundle bundle)
		{
			SetContentView (Resource.Layout.UserRegister);
			base.OnCreate (bundle);


			// Create your application here
			var btnBack =  FindViewById<Button> (Resource.Id.btnUserRgst_Back);
			btnBack.Click += (object sender, EventArgs e) => {
				StartActivity(typeof(MainActivity));
			};
		}

如果要传值,可以使用intent:

var intent = new Intent(this, typeof(UserRegister));
				StartActivity(intent);

以上就是C# 使用Xamarin 开发应用 -- 切换Activity 的内容,更多相关内容请关注PHP中文网(www.php.cn)!