webview1.getSettings().setAppCacheMaxSize(5*1024*1024);
webview1.getSettings().setAppCachePath(getApplicationContext().getCacheDir().getAbsolutePath());
webview1.getSettings().setAllowFileAccess(true);
webview1.getSettings().setAppCacheEnabled(true);
webview1.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
webview1.getSettings().setLoadWithOverviewMode(true);
webview1.getSettings().setUseWideViewPort(true);
webview1.getSettings().setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN);
webview1.getSettings().setDomStorageEnabled(true);
webview1.getSettings().setSaveFormData(true);
Komentar