我可以控制从code中的键盘Android上,特别是大写锁定特别是、键盘、code、Android

由网友(心会发光也会发慌i)分享简介:是否有可能弹出键盘设置大写锁定从code在Android?Is it possible to popup the keyboard and set caps lock on from code on android?推荐答案尝试添加添加机器人:利用=人物到的EditText属性。这应该显示键盘的CAPS。Try...

是否有可能弹出键盘设置大写锁定从code在Android?

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

推荐答案

尝试添加添加机器人:利用=人物到的EditText属性。这应该显示键盘的CAPS。

Try adding add android:capitalize="characters" to the EditText properties. This should display the keyboard in CAPS.

此外仅供参考,这是你如何通过展示code键盘:

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);
阅读全文

相关推荐

最新文章