我想在按钮的单击事件上隐藏键盘。任何帮助,将不胜感激
问问题
1352 次
2 回答
11
隐藏虚拟键盘:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editView.getWindowToken(), 0);
于 2013-03-15T08:35:59.483 回答
3
InputMethodManager inputManager = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
我把它放在 onClick(View v) 事件之后。你需要import android.view.inputmethod.InputMethodManager;
单击按钮时键盘会隐藏。
于 2013-03-15T08:37:22.180 回答