禁用 android WebView 内链接元素上的触摸覆盖层?

发布于 2024-12-11 17:43:04 字数 260 浏览 0 评论 0原文

这可能是一个简单的配置或其他东西,但我想禁用蓝色覆盖,当触摸来自 android 的 WebView 的链接或链接项目(图像或其他链接内容)时,该覆盖会显示。

从 Galaxy Tab - Honeycomb 3.1 获取的屏幕截图

为了更好地说明,我添加了

Android Sample - WebView touch override for links

This might be a simple configuration or something, But I would like to disable blueish overlay which shows when touched on links or linked items (images or other linked stuffs) from android's WebView.

For better illustration, I've added an screenshot taken from Galaxy Tab - Honeycomb 3.1

Thanks

Android Sample - WebView touch overlay for links

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愁杀 2024-12-18 17:43:04

这是我的问题的解决方案,使用 CSS 解决:

body {
   /* Disable tap overlay color on links - set alpha to %0 = invisible */
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

那么它就不应该再给你触摸覆盖了:-]

Here is the solution to my issue, solved using CSS:

body {
   /* Disable tap overlay color on links - set alpha to %0 = invisible */
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

Then it should not give you touch overlay anymore :-]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文