Android Webview : Disable Geo: For Addresses
In my Android application, I am using a WebView to render a list of locations. For some reason, when I click on a list item, it interprets it as a 'geo:' address and opens the defa
Solution 1:
Looks like you want to add this to your <head>
:
<metaname="format-detection"content="address=no" />
See also this similar question:
Post a Comment for "Android Webview : Disable Geo: For Addresses"