Phonegap:如何更改 Android 上的子浏览器窗口大小?
我已经在 Android
上实现了 phonegap childbrowser 插件
,并且我从另一个 webview 调用它,但它显示在整个屏幕上,我不希望它全屏显示。
那么有没有办法调整 childbrowser 窗口大小,以便调用者 webview 看到新子窗口的后面。
谢谢。
I have implemented phonegap childbrowser plugin
on Android
and i am calling it from another webview but it is getting displayed on the whole screen and i dont want it to take full screen.
So is there any way to adjust the childbrowser window size so that caller webview look behind the new child window.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 childBrowser.java 中,您可以找到以下几行:
根据需要更改宽度和高度。您还可以添加新参数以通过 JavaScript 进行设置。
HTH。
in childBrowser.java, you can find the following lines:
Change the width and height as you need. Also you can add new parameters to set it by javascript.
HTH.