我可以通过 Android 上的代码控制键盘吗,特别是大写锁定

发布于 2024-12-09 15:55:35 字数 38 浏览 0 评论 0原文

是否可以通过 Android 上的代码弹出键盘并设置大写锁定?

Is it possible to popup the keyboard and set caps lock on from code on android?

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

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

发布评论

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

评论(2

茶底世界 2024-12-16 15:55:36

您可以使用 capitalize< 将键盘默认设置为全部大写字母/a> 属性:

 <EditText 
        android:layout_height="wrap_content" 
        android:layout_width="match_parent"
        android:capitalize="characters" />

请记住,用户可以简单地关闭“大写锁定”。您可以在您从 EditText 检索的字符串。

You can make the keyboard default to all capital letters by using the capitalize attribute:

 <EditText 
        android:layout_height="wrap_content" 
        android:layout_width="match_parent"
        android:capitalize="characters" />

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.

黯然#的苍凉 2024-12-16 15:55:35

尝试添加 android:capitalize="characters" 到 EditText 属性。这应该以大写字母显示键盘。

另外仅供参考,这是通过代码显示键盘的方式:

EditText editText = (EditText) findViewById(R.id.myEdit);
InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
// only will trigger it if no physical keyboard is open
mgr.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);

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:

EditText editText = (EditText) findViewById(R.id.myEdit);
InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
// only will trigger it if no physical keyboard is open
mgr.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文