如何在xamarin.forms中实现webview的自定义字体[复制]

问题描述 投票:0回答:1

这个问题在这里已有答案:

我的Webview如下:

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

我如何设置自定义字体?

xamarin xamarin.forms xamarin.android
1个回答
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>",
            };
© www.soinside.com 2019 - 2024. All rights reserved.