Android setInitialScale 不适用于移动页面
我正在创建一个应用程序,我必须在其中调整网络视图内容的大小。一切正常,直到我在 webView 中加载移动页面。无论我将 setInitialScale(n) 设置为什么值,webView 的内容都不会调整大小。下面是我正在使用的代码:
webView.getSettings().setSupportZoom(true);
webView.getSettings().setUseWideViewPort(true);
webView.setInitialScale(33);
webView.loadUrl("http://m.jurnalul.ro");
是否有可能缩小或放大包含移动页面的 WebView 的内容。
非常感谢
I am creating an application where I have to resize the content of a webview. Everything works fine until I load inside the webView a mobile page. No matter what value I set to setInitialScale(n)
the content of webView is not resizing. Below is the code I am using:
webView.getSettings().setSupportZoom(true);
webView.getSettings().setUseWideViewPort(true);
webView.setInitialScale(33);
webView.loadUrl("http://m.jurnalul.ro");
Is there any possibility to zoom out or in the content of a WebView that contains a mobile page.
Thank you very much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有没有尝试过:
Have you tried :