我想在我的Android应用中嵌入自定义字体。我不使用TextView所以像this one这样的教程(如何使用TextView自定义字体)没有帮助。
就我而言,内容来自SQLite数据库,并使用WebView显示在屏幕上。我不使用捆绑的HTML文件,因此this tutorial(如何使用WebView自定义字体)也无法解决我的问题。
FIY,这是我的代码:
public void initWebview()
{
WebSettings settings = wvContent.getSettings();
settings.setDefaultTextEncodingName("utf-8");
setContentView(R.layout.content);
wvContent = (WebView) findViewById(R.id.wvContent);
wvContent.setBackgroundColor(Color.argb(250, 250, 250, 250));
wvContent.getSettings().setSupportZoom(true);
wvContent.getSettings().setBuiltInZoomControls(true);
wvContent.setInitialScale(100);
wvContent.setWebViewClient(new WebViewClient()
{
public void onPageFinished(WebView view, String url)
{
if (pd != null)
{
pd.dismiss();
pd = null;
}
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
{
Log.i(CONTENT_TAG,"WebView link clicked; url = " + url);
try
{
String arrUrlPart[] = url.split("://");
if (arrUrlPart[0].equals("entry"))
{
String content = getContentByWord(arrUrlPart[1]);
showContent(content);
}
else if (arrUrlPart[0].equals("http"))
{
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
} catch (Exception ex) {
// TODO Auto-generated catch block
ex.printStackTrace();
}
}
}
catch (Exception ex)
{
ex.printStackTrace();
}
return true;
}
});
}
存储在 assets / fonts 中的字体似乎已嵌入到应用中,我的问题是:
非常感谢。
答案 0 :(得分:9)
根据this回复中的评论,可能的解决方案似乎是在提供资产文件夹作为基本网址时使用loadDataWithBaseURL
,即
LoadData()不起作用,但是 webView.loadDataWithBaseURL(“file:/// android_asset /”,...工作正常。 然后字体文件引用为“/fonts/MyFont.otf”应该工作。 - JaakL 2011年12月1日16:59
我认为捆绑字体不是问题,对吗?
[编辑] 为了澄清我的答案,我写了一个小例子。在下面的代码中,我将Quicksand_Dash.otf
放在 assets / fonts 中,将twitter_logo.png
直接放入 assets 。 HTML只是一个字符串常量,但您可以从SQLLite数据库中检索它。实质上只是使用loadDataWithBaseURL()
....
package oh.jolly.webview;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class WebviewTestActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
WebView webView = (WebView) findViewById(R.id.webview);
webView.loadDataWithBaseURL("file:///android_asset/", PAGE_HTML, "text/html", "UTF-8", "null" );
}
private final static String PAGE_HTML =
"<html>\n" +
" <style type=\"text/css\"> \n" +
" @font-face { \n" +
" font-family: MyFont; \n" +
" src: url(\"file:///android_asset/fonts/Quicksand_Dash.otf\") \n" +
" } \n" +
" body { \n" +
" font-family: MyFont; \n" +
" font-size: medium; \n" +
" text-align: justify; \n" +
" } \n" +
" </style> \n" +
" <body>\n" +
" I've got a sinking feeling...<br>\n" +
" <img src=\"file:///android_asset/twitter_logo.png\" />\n" +
" </body>\n" +
"</html>";
}
答案 1 :(得分:0)
请检查以下链接...我认为它很有用
How to change font face of Webview in Android?
How to use custom font with WebView
在html标题上设置自定义字体,并在html正文中设置内容。所以所有内容都按照你在webview中的嵌入字体显示...