ActionBarCompat.SplitActionsActivity.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.SplitActions);


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

        }