我希望将自定义字体与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>
答案 0 :(得分:5)
解决方案是此处的文档: 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';}
答案 1 :(得分:0)
我的问题是MyFont.TTF但它必须是MyFont.ttf
ttf与linux / android中的TTF不同
:-)
android : html loaded without font