Can I use the soft keyboard without an EditText?

前端 未结 5 1372
傲寒
傲寒 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条回答
  •  旧时难觅i
    2020-12-30 03:04

    Make sure to enable the soft keyboard for your view:

    setFocusable(true);
    setFocusableInTouchMode(true);
    

    Then call:

    InputMethodManager mgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    mgr.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT);
    

提交回复
热议问题