我想在按钮的点击事件上隐藏键盘。任何帮助将不胜感激
答案 0 :(得分:8)
隐藏虚拟键盘:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editView.getWindowToken(), 0);
答案 1 :(得分:2)
InputMethodManager inputManager = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
我把它放在onClick(View v)事件之后。
您需要import android.view.inputmethod.InputMethodManager;
单击按钮时键盘会隐藏。