How to call the application "call number" in a webview?

2

I have a part in my application which is a webview, how to do that when clicking on the webview phone, open the attempted calls?

    
asked by anonymous 29.12.2014 / 18:45

1 answer

1

You do not necessarily have to call a Intent , you can use the "tel URI scheme" , way:

<a href="tel:0110000000">Chamar</a>

Or with javascript:

window.location = "tel:0110000000";
    
29.12.2014 / 18:56