In my app, I am loading a list of external url\'s in webview and allow user to flip through them. Webviews are loaded on to a view flipper. I find the performance is reall
Try this:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { webView.setLayerType(View.LAYER_TYPE_HARDWARE, null); } else { webView.setLayerType(View.LAYER_TYPE_SOFTWARE, null); }