如何在幻灯片菜单上关闭键盘

时间:2015-08-19 07:42:11

标签: android keyboard slide

我使用“Action bar Sherlock”。 我想要在屏幕上触摸并显示幻灯片菜单“键盘关闭”。 我为此感到困惑。 我该怎么办?

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

1 个答案:

答案 0 :(得分:1)

尝试使用此方法在需要时隐藏键盘

k

修改

 public void hideTypingKeyboard() {
        try {
            if(getCurrentFocus() != null) {
                   InputMethodManager imm = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
                   imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
 }

我希望它有所帮助!