我使用“Action bar Sherlock”。 我想要在屏幕上触摸并显示幻灯片菜单“键盘关闭”。 我为此感到困惑。 我该怎么办?
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(0, 0);
答案 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();
}
}
我希望它有所帮助!