My phonegap/jquery mobile application flickers most of the time when I navigate between the pages. Is this normal or is there a solution for this?

link|improve this question

44% accept rate
feedback

6 Answers

.ui-page {
    -webkit-backface-visibility: hidden;
}

This worked for me on phonegap / jquery mobile / Android phone.

link|improve this answer
worked for me too on jquerymobile – Tim Joyce Sep 29 '11 at 20:58
@Decoy yes worked for me too on jquery mobile, how if i have seperate pages 1.html,2.html,3.html – Sahil Nov 10 '11 at 14:07
1  
Be careful. This 'fix' broke some of our forms on Android 2.3, this prevents you from choosing options in selects. Strangely enough Android 2.2 and 4.0 were fine, as was any version of iOS we could find. – AlexMax Dec 27 '11 at 21:08
works on stack browser on Andorid 2.3.3 on SGS II – Petar Repac Mar 5 at 11:45
This still works for me with an iPad2/iOS 5.1, PhoneGap 1.4 and jQuery Mobile 1.1.0-RC1. Thank you! – Brett Alton Mar 16 at 14:16
feedback

There are news (2012-01-10) about the flickering on Android, see http://jquerymobile.com/blog/2012/01/10/upcoming-releases-1-0-1-1-1-and-beyond/

Quote: exclude poorly performing platforms like Android 2.x from the more complex slide, pop and and flip transitions so these will fall back to the default fade for all transitions to ensure a smooth experience.

The CSS solution from this thread didn't work for me (Android 2.x).

I disabled the transistion with data-transition="none" in all links and everything was ok. It should also work when set on page-level, but it didn't work for me (jQuery Mobile 1.0). This is the code:

// turn off animated transitions for Android
if (navigator.userAgent.indexOf("Android") != -1)
{
    $("a").attr("data-transition", "none");
}

Another (the better) way would be to set the default transactions for jQuery Mobile:

$(document).bind("mobileinit", function()
{
    if (navigator.userAgent.indexOf("Android") != -1)
    {
        $.mobile.defaultPageTransition = 'none';
        $.mobile.defaultDialogTransition = 'none';
    }
});

iPhone performs the transitions hardware-accelerated, while the other platforms perform it per software. This explains why only iPhone performs smooth transitions.

link|improve this answer
feedback

Is your app for iPhone or Android?

I've seen this posted in a few spots as a possible CSS fix for the flickering:

#YourApp {
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}
link|improve this answer
Where do I have to set this css fix? In my jquery.mobile-1.0a4.1.min.css? – mike643 May 10 '11 at 19:26
1  
I would leave the jquery css file alone. Are you not working with your own CSS file? If so, add it there and target the body tag. Like: body { -webkit-backface-visibility: hidden; overflow: hidden; } – avoision May 10 '11 at 19:46
Still not working. I tried this but the flicker stays. This css works -webkit-transform:translate3d(0,0,0) but the screen goes up and down if I type in a form. – mike643 May 11 '11 at 13:32
feedback

This is a known issue that the team refers to as "blinking". They've said publicly that they will be tackling this soon and have already assigned someone to it. Here's a recent blog post that mentions it:

http://jquerymobile.com/blog/2011/05/06/jquery-mobile-team-update-week-of-may-2/

link|improve this answer
feedback

FIY: I used the CSS fix last week and while moving on I encountered another problem.

My app has a contact page - pretty straight forward by following the description provided here ( http://jquerymobile.com/demos/1.0a4.1/docs/forms/#forms-text.html ).

However as soon as focussing a text input field the page is "jumping" (read scroling) up and down. Sometimes it also jumps when typing in text. It is kinda hard to describe cause the behavior is quite random but there is a discussion about it. The idea to deactivate the flickering fix comes from there as well. https://github.com/jquery/jquery-mobile/issues/2683#commits-ref-d195354

Still struggling to find a "proper" solution but in case you have no keyboard input I guess it will work fine!

link|improve this answer
feedback

I got rid of the flicker on iOS! With static header and footer.

I have my css as below and no data-position="fixed" on the header and footer.

.ui-mobile, .ui-mobile .ui-page, .ui-mobile [data-role="page"],
.ui-mobile [data-role="dialog"], .ui-page, .ui-mobile .ui-page-active {
      overflow: hidden;
      -webkit-backface-visibility: hidden;
}

.ui-header {
    position:fixed;
    z-index:10;
    top:0;
    width:100%;
    padding: 13px 0;
    height: 15px;
}

.ui-content {
    padding-top: 57px;
    padding-bottom: 54px;
    overflow: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ui-footer {
    position:fixed;
    z-index:10;
   bottom:0;
   width:100%;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.