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

Question:

I have a part in my application that is a webview, how can I make that when I click on the webview phone, open the call intent?

Answer:

You don't necessarily need to call an Intent , you can use the "tel URI scheme" , like this:

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

Or with javascript:

window.location = "tel:0110000000";
Scroll to Top