Android上隐藏键盘btn点击

时间:2013-03-15 08:34:53

标签: android android-keypad

我想在按钮的点击事件上隐藏键盘。任何帮助将不胜感激

2 个答案:

答案 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;

单击按钮时键盘会隐藏。