gpt4 book ai didi

android - 如何在 WebView 中使用自定义字体

转载 作者:IT老高 更新时间:2023-10-28 13:24:12 26 4
gpt4 key购买 nike

现在我想显示一些 unicode 字符,我使用了标签:<font face="
Arial">something here</font>
.但似乎 WebView找不到宋体字体,因为我只能看到不明飞行物字符。我是否必须将 arial.ttf 复制到在某处或如何将 TrueType 字体与 WebView 一起使用?谢谢。

最佳答案

loadData 对我也不起作用,所以我在 src 路径中使用了 file:///android_asset

它与 loadDataWithBaseURL 一起使用!

对于这个示例,我将 CSS 更改为:

@font-face {
font-family: 'feast';
src: url('fonts/feasfbrg.ttf');
}

body {font-family: 'feast';}

然后使用 assets 路径作为基础 url:

loadDataWithBaseURL("file:///android_asset/",myhtml,"text/html","utf-8",null);

关于android - 如何在 WebView 中使用自定义字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1344080/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com