我想在WebViewb上使用我的自定义字体
我的html文件在webView中加载但仍然没有字体
我的字体有Unicode字符
我在Android 2.2上工作
mWebView.loadUrl("file:///android_asset/P_007.html");
我的css:
<STYLE type="text/css">
@font-face {
font-family: AQF_P007_HA;
src: url("AQF_P007_HA.TTF");
}
body {
font-family: AQF_P007_HA;
font-style:normal;
font-weight: normal;
color: black;
font-size: medium;
mso-font-charset: 0
}
</STYLE>
解决方法:
解决方案是这里的文档: How to use custom font with WebView
这类似于你在html文件中尝试使用的内容吗?
在这种情况下,相对于您的资产文件夹的网址?
@font-face {
font-family: 'AQF_P001_HA';
src: url('AQF_P001_HA.TTF');
}
body {font-family: 'AQF_P001_HA';}