如何更改 Android WebView 中的 FontSize?
如何手动更改网页视图的字体大小?例如,当页面在 web 视图中加载时,字体大小约为 24pt。对于我的安卓屏幕来说太大了。我查看了“网络设置”,但似乎两者不相关。
谢谢
How can you manually change the font size of a webview? e.g. When the page loads up in the webview the font size is like 24pt. and way too large for my android's screen. I've looked into the "websettings" but it seems that the two are not related.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我终于找到了它:-
setTextSize
或这个也可以:-
I finally found it:-
either
setTextSize
orThis one works too:-
看来现在首选的方法(即不折旧)是更改文本缩放,如下所示:
It seems that nowadays prefered way, ie not depreciated is to change text zoom, like this:
当我想让用户在
WebView
中更改文本大小/缩放时,我使用的是:在
Actionbar
项上单击,我调用textSmaller()
或textBigger()
来更改文本大小。This is what I use when I want to enable the user to change the text size / zoom in a
WebView
:On
Actionbar
Item click, I call eithertextSmaller()
ortextBigger()
to change the text size.我使用 Javascript 来做这些事情,因为它实际上总是有效的。即使您的 HTML 中使用了 CSS 文件,
您当然也需要将大小和颜色更改为您需要的
I use Javascript to do these kind of things because it practically always works. Even if there are CSS files used in your HTML
ofcourse you need to alter the sizes and colors to the ones you need
如果您想动态增加或减少 WebView 的字体大小,请使用以下代码行:
If you want to increase or decrease font Size of WebView dynamycally than use these lines of code: