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?  The docs say that
returning false is the correct way to indicate that the load has NOT
been overridden.

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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to