Soft-keyboard makes the cordova-view shrink

自古美人都是妖i 提交于 2019-12-10 19:48:18

问题


In my cordova-powered app I disabled the zoom. Though on a page with an input field, if the soft-keyboard shows-up, the view gets automatically zoomed to include the whole page:

when the soft-keyboard disappears, the page remains zoomed.

How to get rid of this zooming? I took a look at softkeyboard plugin but it didn't give me any hints...


回答1:


found an answer myself. I had to add the windowSoftInputMode attribute to make it work:

    <activity
        android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
        ....
        android:windowSoftInputMode="adjustNothing" >


来源:https://stackoverflow.com/questions/22715485/soft-keyboard-makes-the-cordova-view-shrink

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!