I am developing an application with jQuery mobile 1.2 and a phone. Testing on Android 2.3 works great. Android 4.0.4 has annoying flickering of the header and footer. They disappear during the transition between one page and another.
I tried preloading all pages.
I have installed
$.mobile.defaultPageTransition = 'none'; $.mobile.defaultDialogTransition = 'none';
I tried using
.ui-page { -webkit-backface-visibility: hidden; } .ui-mobile-viewport-transitioning, .ui-mobile-viewport-transitioning .ui-page { overflow: visible; }
There is still this problem. As I said: on Android 2.3 the same code works, and I see the title as if it has been fixed, even if I change the page.
Hope someone can help.
Thanks in advance.
source share