This is the link I'm using:
<a href="tel:3326 3728">Ligar</a>
This is the link I'm using:
<a href="tel:3326 3728">Ligar</a>
Here is the snippet of the code that solved this question:
myWebview.setWebViewClient(new WebViewClient(){
public boolean shouldOverrideUrlLoading(WebView myWebview, String url) {
if (url.startsWith("tel:")) {
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse(url));
startActivity(intent);
myWebview.reload();
return false;
}
myWebview.loadUrl(url);
return false;
}
});