ActionBarCompat.ShareActivity.OnCreate C# (CSharp) Method

OnCreate() protected method

protected OnCreate ( Bundle bundle ) : void
bundle Bundle
return void
		protected override void OnCreate (Bundle bundle)
		{
			base.OnCreate (bundle);


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

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