Android hide keyboard on btn click
本问题已经有最佳答案,请猛点这里访问。
我想隐藏一个按钮的点击事件键盘。任何帮助都将不胜感激
要隐藏虚拟键盘:
1 2 | InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(editView.getWindowToken(), 0); |
1 2 3 4 5 | InputMethodManager inputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); |
我把这个放在onclick(view v)事件之后。你需要1[0]
单击按钮时,键盘隐藏。