This little code segment let you to close and prevent pop-keyboard.
//Preventing & Closing Pop-Keyboard Immediately
InputMethodManager inputManager = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
If you have a question, ask me :)