Catcher.AndroidDemo.LoadingAnimationDemo.LastActivity.OnCreate C# (CSharp) Method

OnCreate() protected method

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

            // Create your application here
            SetContentView(Resource.Layout.last);
            TextView tvShow = FindViewById<TextView>(Resource.Id.tv_show);
            tvShow.Text = Intent.GetStringExtra("name");
        }
    }
LastActivity