Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击链接后,如何阻止 web 视图打开?我还需要提取 URL 地址,以便将其放入字符串中。
设置 WebViewClient :
webView.setWebViewClient(new WebViewClient(){ @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { // TODO do something with url return true; } });