Blinking/flickering with JQM and PhoneGap on Android

前端 未结 5 1186
抹茶落季
抹茶落季 2020-12-05 08:47

I am using PhoneGap 2.2.0 in combination with jQuery Mobile 1.2.0 for my app on the Android platform (version 2.3.3 and up). On the pages I use fixed headers, and no transit

5条回答
  •  自闭症患者
    2020-12-05 09:03

    Setting viewport to user-scalable=no fixed the problem for me: 

    Change

    < meta name="viewport" content="width=device-width, initial-scale=1" />
    

    to

    < meta name="viewport" content="width=device-width, user-scalable=no" />
    

提交回复
热议问题