如何使用 PhoneGap 检索设备的屏幕尺寸?

发布于 2025-01-02 02:42:14 字数 219 浏览 1 评论 0原文

我想使用 PhoneGap 应用程序检索设备屏幕的确切大小。我正在使用 Google 图表 API 来检索一些图表,并且我想检索平板电脑上的较大图表和手机上的较小图表。另外,无论设备是纵向还是横向,我都希望它们适合屏幕。

要使用 Google Chart API,我需要发送结果图表的尺寸(以像素为单位),因此我需要设备尺寸。

如何使用phonegap 收集这些信息?

谢谢!

I'd like to retrieve the exact size of a device screen with my PhoneGap application. I'm using Googles chart API to retrieve some graphs and I'd like to retrieve larger graphs for tablets and smaller graphs for phones. Also, I'd like to fit them in the screen whether the device is portrait or landscape.

To use the Google Chart API, I need to send the dimensions of the resulting graph in pixels, so I'll need the device dimensions.

How do I collect this information with phonegap?

thanks!

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

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

发布评论

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

评论(2

月亮是我掰弯的 2025-01-09 02:42:14

您正在寻找 JavaScript 参数:

window.innerHeight
window.innerWidth

计算显示尺寸(以像素为单位)。

You are looking for the JavaScript parameters:

window.innerHeight
window.innerWidth

to figure out the display size in pixel.

梦年海沫深 2025-01-09 02:42:14

由于这可能适用于 HTML 应用程序,为什么您不只是使用 JavaScript 来获取 window.innerHeightwindow.innerWidth,或者通过测量使用 element.offsetWidthelement.offsetHeight 的网页?

谢谢,
凯文

As this is probably for an HTML application, how come you're not just using JavaScript to get the window.innerHeight and window.innerWidth, or by measuring the first child of the webpage using element.offsetWidth and element.offsetHeight?

Thanks,
Kevin

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