Honeycomb 下的 editText 中没有光标
我有一个使用内部 ime 的应用程序(这意味着 ime 只是应用程序内的代码,而不是真正的 ime)。我使用此 ime 面板来输入/编辑 editText。到 Froyo 为止一切正常(我还没有在 Gingerbread 下进行过测试)。然而,在 Honeycomb 上,我可以输入文本并对其进行编辑,但没有显示光标或文本突出显示!有谁知道如何解决这个问题?我不想只是为了纠正这个问题而将我的代码分叉到特殊的 Honeycomb 版本。
我已将 xmlcursorVisible 元素显式设置为 true,然后在代码中使用 setCursorVisible 将其设置为 true,但这没有帮助。
谢谢!
I have an application that uses an internal ime (meaning the ime is just code within the application and not a true ime). I use this ime panel to enter/edit an editText. Everything works fine up to Froyo (I have not tested under Gingerbread). On Honeycomb, however, I can input text and edit it but no cursor or text highlight is displayed! Does anyone know how to work around this? I'd rather not fork my code to a special Honeycomb version just to correct this one problem.
I have explicitly set the xml cursorVisible element to true and then set it to true with setCursorVisible in the code but that doesn't help.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将这些属性添加到您的 EditText 中,以使闪烁的光标变为黑色:
如果您使用 Holo 主题,则需要它。
来自:https://stackoverflow.com/a/9165217/1267112
Add these attributes to your EditText, to make the blinking cursor black:
It's needed if you're using the Holo theme.
From: https://stackoverflow.com/a/9165217/1267112
您可以尝试下面的代码片段。
You can try the code snip below.