Text in my app's WebViews display very blurry on Android 4.4. Works fine in prior versions of Android. Also displays properly after I rotate the device (even if I rotate back to the original orientation.) Anyone know what is causing this?
Here's a screenshot:
It seems that the hardware acceleration was causing the problem. Adding
android:hardwareAccelerated="false"
in the AndroidManifest.xml for the particular activity made the problem go away.
http://developer.android.com/guide/topics/graphics/hardware-accel.html#controlling