How to make a android WebView load faster?

Viewed 10493

Anybody has some suggestions to make a webview faster to load the url?

In my situation, I am using the jQuery's getScript to load the javascript(s) when needed.

Thanks, Sana.

3 Answers

I found this online, it worked for me. Note: Only works for Android API 18+.


        if (Build.VERSION.SDK_INT < 18) {
               //speed webview
               webView.getSettings().setRenderPriority(WebSettings.RenderPriority.HIGH);
           }
Related