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.
私はGooglePlay用のアプリを作成しましたが、それはWebviewコンポーネントを使用して機能し、誰かが私が抱えている問題について私に連絡しました。彼は、アプリ内のリンクをクリックするたびにuTorrentアプリが開くと言っていましたが、私もこれを自分で試しましたが、これは非常に厄介な問題です。
誰かがWebViewと競合するuTorrentのこの問題の解決策を見つけましたか?
どんな助けでもいただければ幸いです。
wv.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; } });
これで問題は解決します。