Android 不渲染 webfonts (PhoneGap)
我在 Android 中渲染本地网页,并包含本地引用的 webfonts,格式为 woff
、ttf
和 svg
(不是通过 HTTP 获取)。但是,这些根本不会在两个不同的设备(API 2.2 和 2.3)上呈现,并且控制台日志保持为空。当然,这些字体在任何支持 webfonts 的浏览器上都可以正常工作,甚至可以在比 Android 上使用的 WebKit 版本 (533.1) 更旧的旧 WebKit 版本 (529.x) 上运行。有什么线索我在拼图中缺少哪一块吗?
I render a local web page in Android and include locally referenced webfonts in woff
, ttf
and svg
format (not fetched via HTTP). However, these are not rendered at all on two different devices (API 2.2 and 2.3) and the console log keeps empty. Of course the fonts work just as they should on any webfonts-capable browser and even old WebKit versions that are older (529.x) than the WebKit version used on Android (533.1). Any clues what piece I am missing in the puzzle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,看来这是一个长期存在的 Android 错误,其中 Web 视图触发
local()
源引用并丢弃其他源。 这为您提供了如何跨平台定义字体的更详细答复,这样他们甚至可以在 IE 上工作。Ok, seems as if this is a long-standing Android bug, where the Webview pokes on a
local()
source reference and discards the other sources. This gives you a more detailed response how to define your fonts cross-platform, so that they even work on IE.