Commit 8b0e200e by amateur

1

1 parent b96bb2eb
......@@ -52,6 +52,10 @@ public class MyWebViewClient extends WebViewClient {
view.getContext().startActivity(intent);
return true;
}
// 禁止百度跳转APP
if (null != url && url.startsWith("baidu")) {
return true;
}
return super.shouldOverrideUrlLoading(view, url);
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!