My application is using a lot of webviews which are lying in fragments which are hold by a ViewPager.
Whenever i swipe through the app on my Galaxy Nexus with Jelly
It also happened to me when I was working in Cordova + Sencha Touch environment. Because
CordovaActivity
does not have anything like onScrollChanged()
method I could not apply any of the above solutions.
After hours of banging my head against the wall I discovered that some parts of web interface had been called before this was completely rendered. In my case those methods were triggered by activate
event in Ext.PanelView
. I replaced that event with painted
and since then everything works like a charm.
Although it is not copy-paste solution I hope it may help someone to save time on investigation.