setCursorVisible 失去突出显示
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
刚刚浏览了
TextView
的代码...似乎它只在私有成员mCursorVisible
为 true 时才绘制选择突出显示。您所看到的行为显然是设计使然的。要解决此问题,我会尝试创建并设置
BackgroundColorSpan
从当前选择。
Just glanced at the code for
TextView
... seems it only draws the selection highlight when the private membermCursorVisible
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.