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

2023-09-05 04:30:05 作者:心会发光也会发慌i

是否有可能弹出键盘设置大写锁定从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);
 
精彩推荐