如何更改Android中Webview的字体?
我想将 webview 的默认字体更改为自定义字体。我正在使用 webview 开发 Android 的双语浏览器应用程序。
我尝试通过将自定义字体放入资产中来获取自定义字体的实例。但仍然无法将 webview 的默认字体设置为我的字体。
这就是我尝试过的:
Typeface font = Typeface.createFromAsset(getAssets(), "myfont.ttf");
private WebView webview;
WebSettings webSettings = webView.getSettings();
webSettings.setFixedFontFamily(font);
任何人都可以纠正这个问题或建议任何其他方法将 webview 的默认字体更改为自定义字体吗?
谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(15)
此项目中有一个有效的示例。归结为:
assets/fonts
文件夹中,放置所需的 OTF 或 TTF 字体(此处为 MyFont.otf)创建一个用于 WebView 内容的 HTML 文件,在里面
assets
文件夹(位于assets/demo/my_page.html
内):从代码中将 HTML 加载到 WebView 中:
请注意,不允许通过
loadData()
注入 HTML。 作为根据文档:正如 @JaakL 在下面的评论中建议的那样,要从字符串加载 HTML,您应该提供指向您的资源的基本 URL:
当引用
htmlData
中的字体时,您可以简单地使用/fonts/MyFont.otf
(省略基本 URL)。There's a working example of this in this project. It boils down to:
assets/fonts
folder, place the desired OTF or TTF font (here MyFont.otf)Create a HTML file that you'll use for the WebView's content, inside the
assets
folder (here insideassets/demo/my_page.html
):Load the HTML into the WebView from code:
Take note that injecting the HTML through
loadData()
is not permitted. As per the documentation:As @JaakL suggests in the comment below, for loading HTML from a string, you should instead provide the base URL pointing to your assets:
When referencing the font in
htmlData
, you may then simply use/fonts/MyFont.otf
(omitting the base URL).我正在使用此代码:
I am using this code :
更简单的是,您可以使用资产 URL 格式来引用字体。无需编程!
...
Even simpler, you can use the Asset URL format to reference the font. No programming needed!
...
可以在 Android 中完成。我花了三天时间解决这个问题。但现在看来非常容易。
按照以下步骤为 Webview 设置自定义字体
1.将字体添加到资产文件夹
2.将字体复制到应用程序的文件目录
3.您只需调用上述函数一次(您必须为此找到一些逻辑)。
4.使用以下代码为您的网络视图设置值。这里我使用CSS来设置字体。
5.您可以按如下方式调用上述函数
It can be done in Android. I took three days to solve this issue. But now it seems very easy.
Follow these steps to set custom font for Webview
1.Add your font to assets folder
2.Copy the font to application's files directory
3.You have to call above function only once (you have to find some logic for this).
4.Use the below code to set value for your webview. Here I am using CSS to set font.
5.You can call the above function as below
我通过上面的答案完成了这个添加:
然后使用 src: url("file:///android_asset/fonts/YourFont...
谢谢大家:)
i done this by upper answers with this additions:
and then use
src: url("file:///android_asset/fonts/YourFont...
thanks to everybody:)
如果您像我一样将字体放在
res/font
下,那么您可以将目录更改为以下内容:-If you are putting fonts under
res/font
like me, then you can change the dir to the following:-如果您的资产文件夹中包含内容,那么上述许多答案都会发挥作用。
但是,如果您像我一样想要将所有资源从服务器下载并保存到内部存储,您可以使用
loadDataWithBaseURL
并使用对内部存储的引用作为 baseUrl。然后,所有文件都将与加载的 html 相关,并被正确找到和使用。在我的内部存储中,我保存了以下文件:
然后我使用以下代码:
上面的 html 中使用的 CSS 文件(style.css):
我只在定位时尝试过此操作minSdkVersion 19 (4.4) 所以我不知道它是否适用于其他版本
Many of the above answers work lie a charm if you have your content in your assets folder.
However, if you like me want to download and save all your assets from a server to your internal storage you can instead use
loadDataWithBaseURL
and use a reference to your internal storage as the baseUrl. Then all files there will be relative to the loaded html and are found and used correctly.In my internal storage I have saved the following files:
Then I use the following code:
The CSS file used in the above html (style.css):
I have only tried this while targeting minSdkVersion 19 (4.4) so I have no idea if it works on other versions
响应兼容Android 11(API 30)或更高版本。
我看到了很多答案,但没有一个适用于 Android 11+。对我来说,解决方案是:WebAssetLoader。
就我而言,字体位于
res/font
文件夹中。使用
loadDataWithBaseURL
加载 HTML 内容。getStyledHtmlContent
返回您的 HTML 内容。Response compatible with Android 11 (API 30) or above.
I saw a lot of answers, but none of them was working on Android 11+. For me, the solution was: WebAssetLoader.
In my case, the font is in
res/font
folder.Load the HTML content using
loadDataWithBaseURL
.The
getStyledHtmlContent
returns your HTML content.您不需要使用本地 ttf 文件来设置 Android 的 webview 字体,它会增加整个应用程序的大小。
您还可以使用在线字体,例如谷歌字体...这将有助于减小您的 apk 大小。
例如:访问以下网址
您将找到使用此字体的必要信息。然后创建一个如下所示的字符串
,然后像这样加载网络视图
。您将能够通过这种方式从外部源加载字体。
现在应用程序字体怎么样,为网络视图使用一种字体并为整个应用程序使用不同的字体是没有意义的。因此,您可以在应用中使用可下载字体它还使用外部源在应用程序中加载字体。
You need not use local ttf file to set webview font for android, It will increase the whole app size.
you can also use online fonts like google's font... It will help to reduce your apk size.
For example: visit the below URL
https://gist.github.com/karimnaaji/b6c9c9e819204113e9cabf290d580551#file-googlefonts-txt
You will found necessary info to use this font. then create a String like below
then load the webview like this
done. You will able to load the font from the external source in this way.
Now whats about the app font, it doesn't make sense to use 1 font for the webview and different font for the whole app. So you can use Downloadable Fonts in your app which also uses external sources for loading fonts in the app.
测试一下,就像魅力一样为我工作:
test it, work for me like a charm :
您可以使用 CSS 来做到这一点。我用一个应用程序做到了这一点,但它在 Android 2.1 中不起作用,因为 Android 浏览器 2.1 存在一个已知错误。
You can do it by using CSS. I did it with an app but it won't work in Android 2.1 as there is an known bug with Android browser 2.1.
问题是它需要位于一个文件夹中,请尝试将“./myfont.ttf”放入文件夹中,如果不将字体放入诸如“fonts/myfont.ttf”之类的资产中的文件夹中,那么肯定会起作用。
The issue is it needs to be in a folder, try putting "./myfont.ttf" instead, if not put the font inside a folder in assets like "fonts/myfont.ttf" that will work for sure.
使用 https://github.com/delight-im/Android-AdvancedWebView 库。
在 html 数据中:
在 xml 中:
在 java 中:
Use https://github.com/delight-im/Android-AdvancedWebView library.
in html data :
in xml :
in java :
这是在 Web 视图中加载 htmlData 的方法:
其中
getHtmlData(activity,**htmlData**)
返回一串 html 代码。This is how do you load htmlData in a webview:
where
getHtmlData(activity,**htmlData**)
returns a string of html code.