Disable editText soft keyboard completely

This question already has an answer here:

  • How to disable keypad popup when on edittext? 25 answers

  • InputMethodManager im = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    im.hideSoftInputFromWindow(editText.getWindowToken(), 0);
    

    使用以下代码禁用屏幕键盘。

    链接地址: http://www.djcxy.com/p/93418.html

    上一篇: 如何在显示软键盘时保持所有字段和文本可见

    下一篇: 完全禁用editText软键盘