If I click on a link related to my site, I'd like the list of applications that can open that link (Google Chrome, UC Browser and etc.) to appear as well, which is a very simple browser that works using a WebView, but only when it's a link to my site .
This is the code for my app:
mWebView = (WebView) findViewById(R.id.webview);
mWebView.loadUrl("http://google.com.br");
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setSupportZoom(false);
mWebView.setWebViewClient(new LinkWebViewClient());
Does anyone have clues on how to do this?