setCursorVisible 失去突出显示

发布于 2024-10-03 23:30:46 字数 89 浏览 2 评论 0原文

我在 EditText 上设置 setCursorVisible(false) 以消除闪烁的光标。不幸的是,这也消除了突出显示。为什么?如何摆脱光标而不是突出显示?

I set setCursorVisible(false) on my EditText to get rid of the blinking cursor. Unfortunately, this also gets rid of highlighting. Why? How can I get rid of the cursor and not the highlighting?

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

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

发布评论

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

评论(1

国产ˉ祖宗 2024-10-10 23:30:46

刚刚浏览了 TextView 的代码...似乎它只在私有成员 mCursorVisible 为 true 时才绘制选择突出显示。您所看到的行为显然是设计使然的。

要解决此问题,我会尝试创建并设置 BackgroundColorSpan从当前选择。

Just glanced at the code for TextView... seems it only draws the selection highlight when the private member mCursorVisible is true. The behaviour you're seeing is evidently by design.

To workaround it I'd try creating and setting a BackgroundColorSpan from the current selection.

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