private void callBackCarregador() { string html = "<html><body>"; foreach (var titol in carregador.getTitle()) { html += "<h2>" + titol + "</h2>"; } html += "</body></html>"; visualitzador.NavigateToString(html); }
private void CallbackCarregarDades() { Android.Webkit.WebView wc = FindViewById <Android.Webkit.WebView>(Resource.Id.webView1); string html = "<html><body>"; foreach (var titol in carregador.getTitle()) { html += "<h2>" + titol + "</h2>"; } html += "</body></html>"; wc.LoadData(html, "text/html; charset=UTF-8", "ISO-8859-1"); }