How to open Keyboard on Button click in android?

后端 未结 3 484
孤城傲影
孤城傲影 2021-01-12 02:12

How can I open Keyboard on Button click in android?

What I want to be like this:

\"enter

3条回答
  •  梦毁少年i
    2021-01-12 02:45

    Please try this

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

提交回复
热议问题