如何使用 PhoneGap 检索设备的屏幕尺寸?
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 JavaScript 参数:
计算显示尺寸(以像素为单位)。
You are looking for the JavaScript parameters:
to figure out the display size in pixel.
由于这可能适用于 HTML 应用程序,为什么您不只是使用 JavaScript 来获取
window.innerHeight
和window.innerWidth
,或者通过测量使用element.offsetWidth
和element.offsetHeight
的网页?谢谢,
凯文
As this is probably for an HTML application, how come you're not just using JavaScript to get the
window.innerHeight
andwindow.innerWidth
, or by measuring the first child of the webpage usingelement.offsetWidth
andelement.offsetHeight
?Thanks,
Kevin