我有一个可编辑的webview应用程序。在Android O(8)中,Google添加了新功能智能文本选择:
https://developer.android.com/preview/api-overview.html#sh
我想禁用打开超链接,谷歌地图,智能文字选择拨号器,如:
我试着添加
<head>
<meta name="format-detection" content="address=no" />
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="email=no" />
</head>
但它不起作用(智能选择菜单项仍然出现)。我需要禁用只从webview内容打开这3个应用程序。 你现在如何禁用这个新功能? 提前谢谢。