80,481
社区成员
发帖
与我相关
我的任务
分享
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (URLUtil.isNetworkUrl(url)){
view.loadUrl(url);
return true;
} else {
try {
startActivity(Intent.parseUri(url, Intent.URI_INTENT_SCHEME));
} catch (Exception ex) {
ex.printStackTrace();
}
return true;
}
}