单击开发的EditText时,键盘不会显示

时间:2017-01-09 11:42:11

标签: android

我尝试在我的项目中使用this有用的库,但在使用它并单击EditText键盘未显示之后,这个简单的类作为库部署{{1} }

EditText

1 个答案:

答案 0 :(得分:1)

您可以通过添加切换来强制显示或隐藏键盘

InputMethodManager imm = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
    if (imm.isActive()){
        imm.toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0); // hide
    } else {
        imm.toggleSoftInput(0, InputMethodManager.HIDE_IMPLICIT_ONLY); // show
    }