Androidで実行できます。この問題を解決するのに3日かかりました。しかし、今ではとても簡単に思えます。次の手順に従って、Webviewのカスタムフォントを設定します。
1.アセットフォルダー
にフォントを追加します2.フォントをアプリケーションのファイルディレクトリにコピーします
private boolean copyFile(Context context,String fileName) {
boolean status = false;
try {
FileOutputStream out = context.openFileOutput(fileName, Context.MODE_PRIVATE);
InputStream in = context.getAssets().open(fileName);
// Transfer bytes from the input file to the output file
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
// Close the streams
out.close();
in.close();
status = true;
} catch (Exception e) {
System.out.println("Exception in copyFile:: "+e.getMessage());
status = false;
}
System.out.println("copyFile Status:: "+status);
return status;
}
3.上記の関数を1回だけ呼び出す必要があります(このためのロジックを見つける必要があります)。
copyFile(getContext(), "myfont.ttf");
4.以下のコードを使用して、webviewの値を設定します。ここではCSSを使用してフォントを設定しています。
private String getHtmlData(Context context, String data){
String head = "<head><style>@font-face {font-family: 'verdana';src: url('file://"+ context.getFilesDir().getAbsolutePath()+ "/verdana.ttf');}body {font-family: 'verdana';}</style></head>";
String htmlData= "<html>"+head+"<body>"+data+"</body></html>" ;
return htmlData;
}
5.上記の関数を以下のように呼び出すことができます
webview.loadDataWithBaseURL(null, getHtmlData(activity,htmlData) , "text/html", "utf-8", "about:blank");