Phonegap:如何更改 Android 上的子浏览器窗口大小?

发布于 2024-11-17 13:05:13 字数 190 浏览 3 评论 0原文

我已经在 Android 上实现了 phonegap childbrowser 插件,并且我从另一个 webview 调用它,但它显示在整个屏幕上,我不希望它全屏显示。

那么有没有办法调整 childbrowser 窗口大小,以便调用者 webview 看到新子窗口的后面。

谢谢。

I have implemented phonegap childbrowser pluginon 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 技术交流群。

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

发布评论

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

评论(1

↘紸啶 2024-11-24 13:05:13

在 childBrowser.java 中,您可以找到以下几行:

WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
lp.copyFrom(dialog.getWindow().getAttributes());
lp.width = WindowManager.LayoutParams.FILL_PARENT;
lp.height = WindowManager.LayoutParams.FILL_PARENT;

根据需要更改宽度和高度。您还可以添加新参数以通过 JavaScript 进行设置。

HTH。

in childBrowser.java, you can find the following lines:

WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
lp.copyFrom(dialog.getWindow().getAttributes());
lp.width = WindowManager.LayoutParams.FILL_PARENT;
lp.height = WindowManager.LayoutParams.FILL_PARENT;

Change the width and height as you need. Also you can add new parameters to set it by javascript.

HTH.

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