[android-developers] Re: webview tel: URLs

2009-06-08 Thread Mark Murphy
Jason Proctor wrote: (can someone respond if they see this? i don't seem to be able to subscribe reliably.) I see it. i'm noticing that the regular browser calls numbers when a tel: URL is clicked, but webviews embedded in applications don't - at least mine doesn't. i have the

[android-developers] Re: webview tel: URLs

2009-06-08 Thread Jack C. Holt
Like Mark Murphy guessed, I set the WebViewClient and put some code in shouldOverrideUrlLoading() to do this. I created a method called setWebViewClient(WebView view) which creates an anonymous class for the WebViewClient that starts out like this... ---