I'm developing an app with jQuery mobile 1.2 and phonegap. Testing it on android 2.3 works fine. On android 4.0.4 there is an annoying flickering of the header and footer. They disappear during the transition between one page and another.
I tried to preload all the pages.
I set
$.mobile.defaultPageTransition = 'none';
$.mobile.defaultDialogTransition = 'none';
I tried with
.ui-page {
-webkit-backface-visibility: hidden;
}
.ui-mobile-viewport-transitioning,
.ui-mobile-viewport-transitioning .ui-page {
overflow: visible;
}
Still have this issue. As I said: on android 2.3 the same code is working and I see the header as if it was fixed even if I change page.
Hope someone will be able to help.
Thanks in advance.