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.
我为 Google Play 制作了一个应用程序,它使用 webview 组件来运行,有人就我遇到的问题与我联系。他说,每当他点击应用程序内的链接时,它都会打开 uTorrent 应用程序,我什至自己尝试过,这是一个非常烦人的问题。
有没有人找到解决 uTorrent 与 WebView 冲突的问题的方法?
任何帮助,将不胜感激。
wv.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; } });
这将解决问题。