我可以通过 Android 上的代码控制键盘吗,特别是大写锁定
是否可以通过 Android 上的代码弹出键盘并设置大写锁定?
Is it possible to popup the keyboard and set caps lock on from code on android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 capitalize< 将键盘默认设置为全部大写字母/a> 属性:
请记住,用户可以简单地关闭“大写锁定”。您可以在您从 EditText 检索的字符串。
You can make the keyboard default to all capital letters by using the capitalize attribute:
Keep in mind that the user can simply turn "caps-lock" off. You can call .toUpperCase() on the String that you retrieve from the EditText.
尝试添加 android:capitalize="characters" 到 EditText 属性。这应该以大写字母显示键盘。
另外仅供参考,这是通过代码显示键盘的方式:
Try adding add android:capitalize="characters" to the EditText properties. This should display the keyboard in CAPS.
Also FYI, this is how you show the keyboard via code: