Android.Dialog.HtmlActivity.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);

            Intent i = this.Intent;
            string url = i.GetStringExtra("URL");

            WebView webview = new WebView(this);
            webview.Settings.JavaScriptEnabled = true;
            SetContentView(webview);
            webview.LoadUrl(url);
        }
HtmlActivity