Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Web view flicker/blinks while scrolling

I am working on hybrid application, there are HTML5 files which i bundled within application. I need to play video on some HTML pages for that i used android:hardwareAccelerated="true" permission in manifest file.

But when i scroll webview it flicker/blinks the view.

Please let me know how to resolve this issue.

Thanks in advance.

like image 379
Manish Lomte Avatar asked Jan 11 '13 12:01

Manish Lomte


1 Answers

I've added:

android:layerType="software"

to WebView, and it magically solved the problem.

Of course, left out hardware acceleration.

like image 75
Dimmy3 Avatar answered Sep 28 '22 04:09

Dimmy3