时间:2021-07-01 10:21:17 帮助过:33人阅读
在API11开始,shouldInterceptRequest被引入,可以解决这一类问题,这个方法可以通知app从本地加载指定的资源,而并非从网络中加载。
WebView请求回网络,返回响应的数据,再调用shouldInterceptRequest方法来替换webView自行加载网络数据的方法,使用app所提供本地数据。WebResourceResponse需要指定MIME类型,编码格式。
webview.setWebViewClient(new WebViewClient() { { @Override public WebResourceResponse shouldInterceptRequest(WebView view, String url) { return replaceJs(view, url); } }); protected WebResourceResponse replaceJs(WebView view, String url) { if (url.startsWith("http://img1.cache.netease.com/f2e/lib/js/ne.js")) { return new WebResourceResponse("text/html", "utf-8", FileTool.streamFromAsset(this, "js/hlct-com.js")); } else { return null; } }public class FileTool { public static InputStream streamFromAsset(final Context ctx, final String file) { try { return ctx.getAssets().open(file); } catch (Exception ignored) { } return null; }}
通过以上的代码就可以对webview中的js资源替换掉了。但加快网页打开的同时会增加app的apk包的大小(资源都放在本地了),空间换时间(时间换空间)的选择就看你的了。