How to have Android webview open links that are target “_blank” in default browser , i tried the following code but it still show all links with the webview , any one have a solution ?
public boolean shouldOverrideUrlLoading(WebView view, String url) {
String myAlternativeURL = "http://example.com";
if (!url.equals(myAlternativeURL)) {
{
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse("http://example.com"));
startActivity(i);
}
return true;
} else {
view.loadUrl(url);
return true;
}
}