android:我想在 WebViewb 中使用我的自定义字体

发布于 2024-12-06 16:17:44 字数 528 浏览 1 评论 0原文

我想在 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>

i want use my custom font with WebViewb
my html file loaded in webView but still without font
my font has Unicode characters
i work on android 2.2

mWebView.loadUrl("file:///android_asset/P_007.html");       

my 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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

西瑶 2024-12-13 16:17:44

解决方案位于此处:How to use custom font with WebView

是这与您尝试在 html 文件中使用的类似吗?
在这种情况下,使用相对于您的资产文件夹的 url?

@font-face {
   font-family: 'AQF_P001_HA';
   src: url('AQF_P001_HA.TTF');
}

body {font-family: 'AQF_P001_HA';}

A solution is document here: How to use custom font with WebView

is this similar to what you tried to use in your html file?
With the url relative to your assets folder in this case?

@font-face {
   font-family: 'AQF_P001_HA';
   src: url('AQF_P001_HA.TTF');
}

body {font-family: 'AQF_P001_HA';}
醉生梦死 2024-12-13 16:17:44

我的问题是 MyFont.TTF 但它一定是 MyFont.ttf
ttf 与 linux/android 中的 TTF 不同。
:-)
android:加载没有字体的 html

my problem was MyFont.TTF but it must be MyFont.ttf
ttf is different from TTF in linux/android.
:-)
android : html loaded without font

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文