Android:是否可以以及如何更改WebView中显示的HTML页面的字体大小?

mrd*_*mrd 3 html android font-size webview

是否可以以及如何更改WebView中显示的HTML页面的字体大小?与桌面浏览器类似吗?

bas*_*shu 5

试试这个

WebSettings webSettings = webView.getSettings();

webSettings.setTextSize(WebSettings.TextSize.SMALLEST);
Run Code Online (Sandbox Code Playgroud)

这个也有效: -

webSettings.setDefaultFontSize(15);
Run Code Online (Sandbox Code Playgroud)

这可能对你有所帮助.

有关更多信息,请查看

如何在Android WebView中更改FontSize?

WebView文本大小