Cell web screen flickering shivering

My application has scrollview and webview inside LinearLayout.

When ads from the millennials appear, some jitter occurs and some parts of the web view turn white.

I tried ALL possible combination of parameters and nothing works.

Is there a better solution or even an explanation?

Note the blank text below: Notice the blank text in the bottom

Note 9 10 11 and 11 sections: Notice 9 10 11 and 11 sections

thank

+3
source share
4 answers

For those who have problems with this, I solved it as follows:

Compatibility.getCompatibility().setWebSettingsCache(webSettings);

Be sure to implement the compatibility level as the following method does not work in SDK_INT <11.

webViewInstance.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
+3
source

AdMob, , :   Android: = " " AdView xml

+2

try adding the android: fadingEdge = "none" attribute to the ScrollView in your layout.

0
source

The answer to this question was to remove perennial ads. It seems that their animation to show the ad interfered with web browsing material.

0
source

All Articles