我有一些webViews,我只想为他们使用“Tahoma”字体。关于如何更改字体有一些问题,但它们都没有真正起作用!这是我的答案:(适用于不在Android上的浏览器)
我在index.html上使用的样式:
@font-face{
font-family: 'tahoma';
src: url('file:///android_asset/fonts/tahoma.ttf');}
// tahoma.ttf is located on asset folder in my project
// body{font-family: 'tahoma';}
网络视图代码:
rootView= inflater.inflate(R.layout.fragment_page1, container, false);
WebView timingView1= (WebView) rootView.findViewById(R.id.TimingWebView);
timingView1.loadUrl("file:///android_asset/index.html");