Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-230
in
a recent build.
-
22 Aug 2011, 10:05 PM
#21
Sencha User
Do you know when the Ice Cream will release?
-
29 Aug 2011, 12:08 AM
#22
Sencha User
fixed flickering on Android
For me it fixed the flickering on an Android between Animations adding -webkit-perspective: 1000; to the already discussed solution. Without this the icons of a tabBar didn't get rendered at first.
Code:
.x-panel {
-webkit-perspective: 1000;
-webkit-backface-visibility: hidden;
}
Tested with Sencha Touch 1.1.0 and PhoneGap 1.0.0 on Android 2.3.
Please, let me know your experience with other devices.
-
Sencha User
@imwill
This solved flickering and icons look OK... but now scrolling up and down in panels is broken.
Some buttons do not scroll with the rest of form.
-
Sencha User
@emblemparade
Scrolling vertically in panels works for me. I didn't try it with forms and buttons though.
-
23 Sep 2011, 11:05 AM
#25
Sencha User
Works great for me. Thank you very much.
-
Sencha User
The above solution break some basic functionality, waiting for 2.0, try this, no animation but it works.
In your tabPanel:
cardSwitchAnimation: Ext.is.Android ? false : 'slide'
-
Sencha User
Hi,
first of all, sorry for my english
Code:
.x-panel {
-webkit-perspective: 1000;
-webkit-backface-visibility: hidden; }
the above solution does not work for me. The main view of my app is a TapPanel.
With the next solution:
Code:
.x-panel { -webkit-backface-visibility: hidden; }
the animation flickering is fix but it break icon rendering of my Tabpanel on loading...just
like emblemparade said. The only way to render the tabpanel icons is by touching the phone screen after the loading is complete.
My solution is simply to add
Code:
Example.App.setActiveItem(0);
It react like if someone touch the screen...it render the icons!
android 2.3.3+
-
Touch Premium Member
Alternative fix
For me, this fixed the issue (thanks to @imwill and @interfasys):
Code:
.x-panel .x-button {
-webkit-perspective: 1000;
-webkit-backface-visibility: hidden;
}
Last edited by Philip Murphy; 6 Jun 2013 at 3:55 AM.
Reason: Formatting and credit.
-
Sencha User
I know it seems amateur but has anyone experienced heat issues that relate to the flickering in Android? Sometimes the simplest answer is... Just checking guys. Thanks. Please bare with me.