Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为 webview 设置了字体。由于字体文件太大,将字体文件放入服务器时会严重影响加载时间。
所以我决定把字体文件打包成apk。但是我不知道如何在css中调用它?
谁能给我一些建议?谢谢。
您可以像这样在css中设置路径
@font-face { font-family: 'android_myface'; src: url('file:///android_asset/fonts/myfont.ttf'); }
并使用它
html{ font-family: 'android_myface', serif; }
把你的 myfont.ttf 文件放在你的assets文件夹中