Android webview更改链接的突出显示颜色
我需要更改 Android webview 中链接的默认选择颜色。 解决堆栈溢出中的几个问题对我没有帮助。 下面的问题回答如何删除它。我只想将颜色从橙色更改为红色。 Android 浏览器点击时出现绿色边框
有人可以帮我吗?
I need to change the default selection color of the link in Android webview.
Going through the few questions in the stack overflow didn't help me .
Below question answer how to remove it. I want to just change the color from orange to e.g. red.
Android browser GREEN border on click
Can some one help me out ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不介意使用 jQuery(我从不介意),请首先添加以下内容:
然后使用
touchstart
或touchend
命令,如下所示:If you don't mind getting jQuery involved (I never do), first add this:
Then use the
touchstart
ortouchend
commands like this:您无法在 WebView 中更改它。但是,您可以将数据作为字符串读取,将所有 a 标记替换为 (lt)font color="#0000FF"(gt)(lt)a (并相应地更改 /a 标记),然后使用 webView 在 WebView 中加载字符串.loadData(字符串字符串..)。
You can't change it in WebView. You can however read the data as a string, replace all a tags by (lt)font color="#0000FF"(gt)(lt)a (and change the /a tags accordingly) and then load the string in WebView with webView.loadData(String string ..).