Flickering Sencha Touch Animations on Android

by Hendrik Will. 3 Comments

After deploying my project on Android Devices I found out about some annoying bug in Sencha Touch. It causes flickering on Android when using Animations like cardSwitchAnimation: ‘slide.’ All available solutions didn’t seem to fix this issue on my setup completely. I was using a tabBar at the bottom of my application and the icons of it didn’t get rendered when the app loaded for the first time.
The property -webkit-perspective helped me to fix this problem

.x-panel {
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}

This was tested with Sencha Touch 1.1.0 and PhoneGap 1.0.0  on Android 2.3.

3 Responses to Flickering Sencha Touch Animations on Android

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>