我在 webview 中整齐地加载网页时遇到问题

发布于 2024-11-05 04:13:32 字数 132 浏览 1 评论 0原文

每次我在网络视图中加载页面时,网络视图都会尝试将网页压缩成一个小框架。然而,在标准的 Android 浏览器中,它以完整尺寸加载页面,并允许用户放大他们决定的大小。

有没有办法让 webview 像默认的 web 浏览器一样加载页面?

Everytime I load a page in the webview, the webview tries to squash the web page into a small frame. However, in the standard android browser, it loads the page at the full size and allows the user to zoom in however much they decide.

Is there anyway to make a webview load a page like the default web browser?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

献世佛 2024-11-12 04:13:32

像这样的东西:

WebView wv;
WebSettings webSettings = wv.getSettings();

webSettings.setBuiltInZoomControls(true); //when you define webview settings just add this to enable zoom
wv.setInitialScale(1); //lets set initial zoom to 1% to see whole page when it loads

Something like this:

WebView wv;
WebSettings webSettings = wv.getSettings();

webSettings.setBuiltInZoomControls(true); //when you define webview settings just add this to enable zoom
wv.setInitialScale(1); //lets set initial zoom to 1% to see whole page when it loads
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文