There are other questions that ask similar questions, this was taken from them:
webview.getSettings().setRenderPriority(RenderPriority.HIGH);
webview.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
Adding this android:hardwareAccelerated="true"to the manifest was the only one that significantly improved performance for me.
source
share