1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| webview.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; }
......
......
@Override public void onLoadResource(WebView view, String url) { super.onLoadResource(view, url); String thisUrl = view.getUrl(); if (!thisUrl.equals(starUrl)) { starUrl = thisUrl; Log.d("sch", "onLoadResource: " + view.getUrl()); if (thisUrl.contains("fid")) {
Matcher matcher = ID_PATTERN.matcher(thisUrl); if (matcher.find()) { ToastUtil.show(WebViewActivity.this, "已选择收藏夹"+matcher.group(2)); } }
}
}
});
|