phonegap 2.2 orientation change does not resize app

后端 未结 4 1831
梦如初夏
梦如初夏 2021-02-01 19:50

I didn\'t have this problem on previous versions of Phonegap. But in 2.2, when I change the orientation, it doesn\'t update the uiwebview.

Does phonegap not

4条回答
  •  滥情空心
    2021-02-01 20:30

    window.addEventListener(
        "orientationchange",
        function() {
            // Announce the new orientation number
            location.reload();
        }, false );
    

提交回复
热议问题