1

我正在使用 HTML/Canvas、Javascript 和 CSS 开发一个带有 Phonegap 的 Android 应用程序。使用下面的代码,我将画布拉伸到全屏。

var canvas = $("#mycanvas");
var ctx = canvas.get(0).getContext("2d");
canvas.attr("width", $(window).get(0).innerWidth);
canvas.attr("height", $(window).get(0).innerHeight);
ctx.clearRect(0, 0, canvas.width, canvas.height);

我还在 AndroidManifest.xml 文件中修复了横向视图。

android:screenOrientation="landscape"

在 config.xml 中,我要求全屏显示。

<preference name="fullscreen" value="true" />

到目前为止一切顺利,但有一个大问题。我可以从屏幕上滚动我的应用程序,尽管那里没有内容。我只看到一个深灰色的背景。

有谁知道如何解决这个问题?我会很感激。

4

1 回答 1

1

我建议您使用 Viewport Meta-tag 尝试一下。这将使您的 html 文档正确缩放。 https://developer.mozilla.org/en-US/docs/Mobile/Viewport_meta_tag

于 2012-12-05T14:32:01.210 回答