Cordova + Android:如果显示虚拟键盘,如何停止缩小屏幕?

时间:2015-03-22 15:42:21

标签: android css cordova

Helo,

如果显示虚拟键盘,我在Android设备上的屏幕缩小有问题。我想保持屏幕不缩小。

见下图:

enter image description here

我该怎么办?

Cordova版本为4.2.0

非常感谢任何建议。

1 个答案:

答案 0 :(得分:1)

转到AndroidManifest.xml,在主活动中添加两个属性

    android:windowSoftInputMode="adjustPan" 
    android:isScrollContainer="false"

希望它可以解决你的问题。

相关问题