我正在使用 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" />
到目前为止一切顺利,但有一个大问题。我可以从屏幕上滚动我的应用程序,尽管那里没有内容。我只看到一个深灰色的背景。
有谁知道如何解决这个问题?我会很感激。