So I've got a WebView, and in its content is a phone number. I
hightlight it and click - voila, taken to the phone app.
Now, all I do is add this code:
wv.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String
url) {
return false;
}
});
and hey, presto!, clicks no longer work.
Can anyone repro/explain this odd behavior?
Thanks.
Marc
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---