I have the following problem:
I am working on an Android application where at some point I load a webview with content from the internet. The HTML and javascript code of the webview includes the appropriate tag (<a href="tel:0863274XX"> blablabla </a>
) in order to perform the call through the application by launching the appropriate app of my android phone.
Unfortunately, when I click on the image that has the a href, the browser gives an error by saying that the "web page is not available" and it can't load the tel:0863274XX element.
The headers of the loaded webview also include (which I don't really know the effect):
<meta name="viewport" content="width=device-width, user-scalable=no"/>
<meta name="format-detection" content="telephone=no" />
What am I doing wrong ? What should I look for ? I have also tried to use the whole phone number (with country and area code) and the "call" tag instead of the "tel" but with no success.
Any ideas and comments are welcome :)