Android 隐藏键盘但光标停留在屏幕上
早上好!
在我正在开发的应用程序中,我隐藏了软键盘并在屏幕上显示了黑色覆盖层。我遇到的问题是,隐藏键盘后,EditText 上仍然有一个小指示器/光标。
我怎样才能隐藏这个?
非常感谢!
Good morning!
On an app that I'm working on, I hide the soft keyboard and have a dark overlay appear on screen. The issue I'm having is that after the keyboard is hidden, there is still a little indicator/cursor on the EditText.
How can I hide this?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 xml 属性 android:cursorVisible 或 java 函数 setCursorVisible(boolean)。
You can use either the xml attribute android:cursorVisible or the java function setCursorVisible(boolean).