如何使用自定义字体创建webview。 Webview加载外部链接(" www.example.com")。显示此站点 在我的Android应用程序中使用自定义字体。
感谢所有回答。
答案 0 :(得分:1)
将ttf文件放入资产中 并尝试这个
<html>
<head>
<style type="text/css">
@font-face {
font-family: typeface;
src: url("file:///android_asset/fonts/typeface.otf")
}
body {
font-family: typeface;
font-size: medium;
}
</style>
</head>
<body>
</body>
</html>