문제

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:

Start state

with soft-keyboard

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...

도움이 되었습니까?

해결책

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" >
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top