Android WebView JellyBean -> Should not happen: no rect-based-test nodes found

前端 未结 8 1596
南旧
南旧 2020-11-30 20:32

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

8条回答
  •  北海茫月
    2020-11-30 21:17

    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.

提交回复
热议问题