从资产文件夹加载字体

时间:2013-11-21 07:22:22

标签: android webview

我从远程服务器加载html文件并在webview中显示它们但我的语言的默认字体有点乱,所以我试图从资产文件夹加载字体。这是我的java代码和html文件。

webView.getSettings().setAppCacheEnabled(false);
webView.getSettings().setAppCacheMaxSize(1);
webView.getSettings().setDomStorageEnabled(true);
webView.addJavascriptInterface(new WebAppInterface(this), "Android");
webView.setWebViewClient(new MyWebViewClient());
isShowing=true;
dialog.show();
String address="http://server/test.html";
Log.d("checking", address);
webView.loadUrl(address);

html代码:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">


<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title> Title Here </title>

    <style type="text/css">
    @font-face {
      font-family:nazanin;
      src:url('file:///android_asset/fonts/BNAZANIN.TTF');
    }

    body {
      font-family: nazanin;
      font-size: medium;
      text-align: justify;
    }

</style>

</head>

<body>

  <p>this is for test</p>

</body>
</html>

问题出在加载后我得到了这个错误:

  

11-21 10:50:55.439:E / Web Console(9572):不允许加载本地资源:file:///android_asset/fonts/BNAZANIN.TTF at:0

这是什么解决方案?

1 个答案:

答案 0 :(得分:0)

我最终在服务器上添加该字体并链接到html文件中的字体。我几乎尝试了任何方式,我认为这是唯一有效的方法。当您在html中使用css和js等外部文件时,LoadDataWithBaseUrl和在资产文件夹中添加字体的方式不是这样的。