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?
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?
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";