Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/drupal/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Webview Android O如何从智能文本选择中禁用打开应用程序_Webview_Android 8.0 Oreo - Fatal编程技术网

Webview Android O如何从智能文本选择中禁用打开应用程序

Webview Android O如何从智能文本选择中禁用打开应用程序,webview,android-8.0-oreo,Webview,Android 8.0 Oreo,我有一个带有可编辑webview的应用程序。在Android O(8)中,谷歌添加了新功能智能文本选择: 我想禁用从智能文本选择打开超链接、谷歌地图和拨号器,如: 我试图补充 <head> <meta name="format-detection" content="address=no" /> <meta name="format-detection" content="telephone=no" /> &l

我有一个带有可编辑webview的应用程序。在Android O(8)中,谷歌添加了新功能智能文本选择:
我想禁用从智能文本选择打开超链接、谷歌地图和拨号器,如: 我试图补充

<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个应用程序。 您现在知道如何禁用此新功能了吗? 先谢谢你