整个 HTML 页面不会显示在 WebView 中

发布于 2024-12-08 14:09:57 字数 370 浏览 0 评论 0原文

我在 Android 应用程序的 WebView 中打开了一个 HTML 页面。但该页面不会自动调整大小以适应 WebView,因此页面的某些部分不会显示在 WebView 中。我希望,当在 WebView 中打开 HTML 页面时,整个页面必须适合 WebView。我已经解决了其他相关问题并尝试过它们,但它对我不起作用。
我已将这些行添加到 WebView:

    webView.getSettings().setUseWideViewPort(true);
    webView.getSettings().setLoadWithOverviewMode(true); 

但什么也没发生,还有其他方法来实现这个东西吗?帮助总是值得赞赏的。

I have an HTML page opened in a WebView in my Android app. But that page is not auto-sized to fit in the WebView, hence some part of the page does not show up there in the WebView. I want that, when an HTML page is opened in a WebView, the whole page must fit in the WebView. I have gone through other related questions and I have tried them, but it did not work for me.
I have added these lines to WebView:

    webView.getSettings().setUseWideViewPort(true);
    webView.getSettings().setLoadWithOverviewMode(true); 

but nothing happened, is there any other way of implementing this thing? Help is always appreciated.

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

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

发布评论

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

评论(1

花想c 2024-12-15 14:09:57

这对我有用:

WebView myWebView = (WebView) findViewById(R.id.webView1);

myWebView.getSettings().setLoadWithOverviewMode(true);

myWebView.getSettings().setUseWideViewPort(true);

myWebView.loadUrl("http://saudi-arabia.gold-price-today.com/");

如果此代码不适合您,请尝试在新项目中使用它。

This works with me:

WebView myWebView = (WebView) findViewById(R.id.webView1);

myWebView.getSettings().setLoadWithOverviewMode(true);

myWebView.getSettings().setUseWideViewPort(true);

myWebView.loadUrl("http://saudi-arabia.gold-price-today.com/");

If this code doesn't work for you, try to use it in new project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文