Skip to content

Instantly share code, notes, and snippets.

@RareScrap
Created March 15, 2017 07:05
Show Gist options
  • Save RareScrap/f6c26f4403429116d80a75eede9fc4d1 to your computer and use it in GitHub Desktop.
Save RareScrap/f6c26f4403429116d80a75eede9fc4d1 to your computer and use it in GitHub Desktop.
Сокрытие клавиатуры
// Клавиатура закрывается при касании кнопки FAB
private void dismissKeyboard(View view) {
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment