是否可以为android web视图设置type face,以便它以编程方式支持gujarati,hindi和tamil等所有语言。或者是否有其他方法可以在Web视图上获得对此类语言的支持 提前致谢
答案 0 :(得分:0)
您可以从教程和stackflow答案中学习如何在webview中注入Javascript。这是相关的教程。
一旦您知道可以在应用中使用谷歌字体等谷歌字体。以下是您开始使用谷歌字体的方法。 https://developers.google.com/fonts/docs/getting_started
答案 1 :(得分:0)
您也可以将您的字体放入资源中,并将其加载到本地html中,如
<head>
<style type="text/css">
@font-face { font-family: MyCustomFont;
src:url("~/android_asset/fonts/myfont.otf") }
h2{ font-family: MyCustomFont;
font-size:18;
text-align: center;
line-height: normal;
margin:auto;
}
</style>
</head>