WebView webView = FindViewById<WebView>(Resource.Id.webView1);
webView.HorizontalScrollBarEnabled = false;
webView.LoadUrl("res.htm");
How to change some pieces of HTML code in my file and show it with webView without physical file changing?
WebView webView = FindViewById<WebView>(Resource.Id.webView1);
webView.HorizontalScrollBarEnabled = false;
webView.LoadUrl("res.htm");
How to change some pieces of HTML code in my file and show it with webView without physical file changing?
You can load html as a string by using this code.
var htmlView = new WebView(context);
htmlView.LoadData(htmlMarkup, "text/html", "utf-8");