<p>Lorem ipsum dolor sit amet,....</p>
<img src="http://www.example.com/example.jpg />
<p>Another context <strong> this</strong></p>
<iframe width="560" height="315" src="https://www.you.com/"></iframe>
....
我尝试在WebView中显示:
var web = new WebView ();
var html = new HtmlWebViewSource {
Html =list[0].Details
};
web.Source = html;
Model.cs:
public class{
string Title{get;set}
string Details{get;set}
int Id{get;set;}
}
ViewModel cs:
try{
var client = new HttpClient();
var json = await client.GetStringAsync(url);
list =JsonConvert.DeserializeObject<List<Model>>(json.ToString());
}
catch (Exception ex){}
我尝试但不工作,Webview中的任何内容。
另外一个问题,分享,html混合内容的一部分,如图像,视频或部分文字,可以在Webview中分享吗?