Do I need to implement my own WebViewClient in order for my WebView to handle common links like geo:, tel: and mailto:?

Can't the WebView handle it on it's own?

link|improve this question

37% accept rate
feedback

2 Answers

If you want to open web pages in your application and you want to customize it, like you want to add button on the webpage then you have to implement your own WebViewClient class in your class otherwise it will open default browser of your devise/emulator and then you can not do anything on it.

link|improve this answer
feedback

Yes I agree with rahul. If you want to have control over the flow of your webview like which URLs are allowed and which are disallowed, when the loading of a page started and finished etc. then you need to have implement your webview client.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.