0

我正在尝试将我的 Gear 2 应用程序之一移植到 Gear S。我使用新名称复制了该应用程序,然后更改了 index.html 、 config.xml 中的宽度/高度设置 宽度得到正确拟合(360px)但高度没有不适合。它保持高度不是 480 而是 360。底部和顶部有黑色边距。我怎样才能从前 0 开始?

附言。我有一个设置为 100% 适合的背景

.canvas#cnvs { 
    width:100%;
    heigth:100%;
    background: url(../images/BG_PART.png);   
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display:block;
}
4

1 回答 1

0

问题是我的 config.xml 中的以下行

<preference name="view-compat" value="square"/>

当我删除它时它就解决了。

于 2014-11-16T12:20:37.707 回答