Phonegap Android:元标记“视口”被忽略
我在 Android 2.2 Samsung Galaxy Tab 上使用 Phonegap 1.4.1。 我尝试使用元标记 viewport
和 content="width=1024"
调整视口,但该标记被忽略。 我已经尝试过这样的解决方案 Android - PhoneGap/WebView 忽略视口元标记? 但到目前为止我发现的解决方案都不起作用。 你有什么建议吗?
提前致谢。
I am using Phonegap 1.4.1 on a Android 2.2 Samsung Galaxy Tab.
I tried to adjust the viewport with the meta tag viewport
with content="width=1024"
but the tag is ignored.
I already tried solutions like this one
Android-- PhoneGap/WebView ignores viewport meta tags?
But none of the solutions I found so far worked.
Do you have any advice?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现一篇文章说三星 Galaxy Tab 7.0 的视口有点奇怪。它显示宽度为 683px,高度为 330px。 ,请点击此处
有关更多详细信息 这有帮助
I've found an article saying that the viewport for samsung galaxy tab 7.0 was a bit weird. It display the width as 683px and 330px height. For more details click here
Hope that helps
尝试
使用:
document.body.style.height = screen.height + 'px';
。在
onDeviceReady
函数中Try using:
document.body.style.height = screen.height + 'px';
in your
onDeviceReady
function.