Can I use the soft keyboard without an EditText?

前端 未结 5 1387
傲寒
傲寒 2020-12-30 02:29

I\'m creating a simple typing game in Android. I have no problem getting input from the physical keyboard, but now I\'m trying to get the soft keyboard to appear without the

5条回答
  •  醉酒成梦
    2020-12-30 03:03

    The following code works for me:

     InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); 
     imm.toggleSoftInput (InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);
    

    I use this code in a onKeyUp handler when I press the "menu" button.

提交回复
热议问题