I have a WebView wherein I would like anchor tags with rel=external to open in the Android browser but all other links to stay in the WebView.
So the content will load within the WebView if the user taps a link whose markup looks like this:
<a href="http://example.com/">Whatever</a>
But the content will load in the Android browser if the user taps a link whose markup looks like this:
<a href="http://example.com/" rel="external">Whatever</a>
Here's my relevant code (with one bit of pseudocode identified with a comment) in the WebViewClient code:
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (! rel=external) { // <-- That condition...how do I do that?
view.loadUrl(url);
return false;
} else {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
return true;
}
Would the best way to determine whether there is a rel=external attribute/value be to somehow use addJavascriptInterface() and have JavaScript inform Java whether or not there is a rel attribute and what the value is?
Or is there a better way?
(I am looking for a solution that does not involve checking the domain of the URL because there are an arbitrary number of domains that need to be treated as internal and that I cannot know in advance or determine easily on-the-fly.)