ActionBarCompat.ThemeDarkABMainActivity.OnCreate C# (CSharp) Метод

OnCreate() защищенный Метод

protected OnCreate ( Bundle bundle ) : void
bundle Bundle
Результат void
		protected override void OnCreate (Bundle bundle)
		{
            
			base.OnCreate (bundle);


			// Set our view from the "main" layout resource
			SetContentView (Resource.Layout.Main);

            var next = new Intent(this, typeof(SplitActionsActivity));
            FindViewById<Button>(Resource.Id.button).Click += (sender, args) => StartActivity(next);
        }