按钮点击时不显示android软键盘

这个问题在这里已经有了答案:

  • 关闭/隐藏Android软键盘69个答案

  • 请试试这个,

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

    尝试这样的事情:

     InputMethodManager imm = (InputMethodManager)getSystemService(MainActivity.this.INPUT_METHOD_SERVICE);
    imm.showSoftInput(mainLayout.getWindowToken(), 0);
    
    链接地址: http://www.djcxy.com/p/16615.html

    上一篇: android soft keyboard not showing on button click

    下一篇: How to disable android keyboard in android application