Skip to content

Instantly share code, notes, and snippets.

@Tarelochkin
Last active August 18, 2017 19:40
Show Gist options
  • Save Tarelochkin/ddcd570d96b14cf32eeac273a0bc44d5 to your computer and use it in GitHub Desktop.
Save Tarelochkin/ddcd570d96b14cf32eeac273a0bc44d5 to your computer and use it in GitHub Desktop.
Hide the soft keyboard programmatically or alternatively in Manifest.xml
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(searchView.getWindowToken(), 0);
<activity
android:windowSoftInputMode="stateHidden"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment