This may be due to hardware acceleration. Try to specifically disable it. You can do it
1) in the application tag inside your manifest (which will disable hardware acceleration throughout the application)
android:hardwareAccelerated="false"
OR 2) Disable it for a problematic representation in the code:
myView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
For more information and to verify that WebView or ListView hardware acceleration is correct, see > this link
Entreco
source share