Try this - This will enable the cache in your web browser, so it can help you load pages faster.
WebSettings webSettings = webview.getSettings(); webSettings.setPluginsEnabled(true); webSettings.setJavaScriptEnabled(true); webSettings.setDatabaseEnabled(true); webSettings.setDomStorageEnabled(true); webSettings.setAppCacheEnabled(true); webSettings.setCacheMode(WebSettings.LOAD_NO_CACHE);
this fragment is designed to quickly load any page, if you specifically want to load local pages, try using the example described in this link.
source share