Skip to content

Instantly share code, notes, and snippets.

@kuraydev
Created January 7, 2016 21:39
Show Gist options
  • Select an option

  • Save kuraydev/35bb27c8f2b21220c903 to your computer and use it in GitHub Desktop.

Select an option

Save kuraydev/35bb27c8f2b21220c903 to your computer and use it in GitHub Desktop.
Prevent & Close pop-keyboard immediately
//Preventing & Closing Pop-Keyboard Immediately
InputMethodManager inputManager = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment