Android 2.2 Web View windows moves up when Virtual Keyboard appears

前端 未结 5 2010
半阙折子戏
半阙折子戏 2021-02-10 11:47

I am developing an Application using Phonegap on Android. Everything works fine on OS 2.1 but on OS 2.2 when we click on any input type text field the keyboard appears and whole

5条回答
  •  梦毁少年i
    2021-02-10 12:29

    You might have to enable this script to avoid your app scrolling when your text input field gets focus :)

    function preventBehavior(e) 
    { 
      e.preventDefault(); 
    };document.addEventListener("touchmove", preventBehavior, false);
    

提交回复
热议问题