整个 HTML 页面不会显示在 WebView 中
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我有用:
如果此代码不适合您,请尝试在新项目中使用它。
This works with me:
If this code doesn't work for you, try to use it in new project.