如何在xamarin.forms中为Webview实现自定义字体

时间:2019-03-08 16:56:10

标签: xamarin xamarin.forms xamarin.android

我的Webview如下:

<WebView x:Name="WebView" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" HeightRequest="100">
                 <WebView.Source>
                      <HtmlWebViewSource Html="{Binding LongDesc}" />
                 </WebView.Source>
                </WebView> 

如何设置自定义字体?

1 个答案:

答案 0 :(得分:0)

我是这样实现的,并且有效

 WebView.Source = new HtmlWebViewSource
            {
                Html = @"<!DOCTYPE html><html><head><style> *{ font-family: sans-serif; font-size: 14}</style></head><body>" + Event.LongDesc + @"</body></html>",
            };