I have made a simple app from website with webView. It's a torrent site. I post magnet link in the site. What I want is when I click on only magnet link all torrent app like bit-torrent will catch the address automatically. Plus all other external site link will open in external browser like Chrome.
I have followed some online tutorial even from here (stackoverflow) but they are old and used shouldOverrideUrlLoading
, but Google says that this method was deprecated in API level 24.
Here https://developer.android.com/guide/webapps/webview.html I have followed google to use this code.(modified to match with my site) but its not working. please someone help me with this.
private class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (Uri.parse(url).getHost().equals("www.example.com")) {
// This is my web site, so do not override; let my WebView load the page
return false;
}
// Otherwise, the link is not for a page on my site, so launch another Activity that handles URLs
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
return true;
}
}
This my java main activity code now.now every link in the site open in webview but I don't want that and for magnet link it shows like this snapshot.
public class MainActivity extends Activity {
private WebView myWebView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
myWebView = (WebView) findViewById(R.id.webView);
// Configure related browser settings
myWebView.getSettings().setLoadsImagesAutomatically(true);
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
// Configure the client to use when opening URLs
myWebView.setWebViewClient(new MyBrowser());
// Load the initial URL
myWebView.loadUrl("https://example.com");
}
@Override
public void onBackPressed() {
if(myWebView.canGoBack()) {
myWebView.goBack();
} else {
super.onBackPressed();
}
}
private class MyBrowser extends WebViewClient {
}
}