如何在android中为Web视图设置Type face

时间:2014-06-04 10:35:38

标签: android webview typeface

是否可以为android web视图设置type face,以便它以编程方式支持gujarati,hindi和tamil等所有语言。或者是否有其他方法可以在Web视图上获得对此类语言的支持 提前致谢

2 个答案:

答案 0 :(得分:0)

您可以从教程和stackflow答案中学习如何在webview中注入Javascript。这是相关的教程。

http://www.techrepublic.com/article/pro-tip-inject-javascript-into-an-android-web-view-for-a-more-dynamic-ux/

一旦您知道可以在应用中使用谷歌字体等谷歌字体。以下是您开始使用谷歌字体的方法。 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>