I am testing a mobile web application built in jQuery Mobile 1.1.0. I am testing the website application using my Galaxy Nexus running on android 4.0. There is a nasty flick
The only real way to prevent the "flickering" is to disable the jQuery Mobile page transitions altogether. In the of your document, place this code:
// load your custom jQuery Mobile Defaults
// load jQuery Mobile
// load your scripts.js (your javascript & functions, etc.)
To disable transitions, inside of the mobile-site-custom-jqm-defaults.js file, place this code:
$(document).bind("mobileinit", function(){
$.extend( $.mobile , {
defaultPageTransition: 'none'
});
});