Catcher.AndroidDemo.EasyLogOn.UserActivity.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.User);

            TextView info = FindViewById<TextView>(Resource.Id.tvInfo);

            string name = Intent.GetStringExtra("name");

            info.Text = name + "欢迎您的到来!" ;
        }
    }
UserActivity