Created
March 15, 2017 07:05
-
-
Save RareScrap/f6c26f4403429116d80a75eede9fc4d1 to your computer and use it in GitHub Desktop.
Сокрытие клавиатуры
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Клавиатура закрывается при касании кнопки 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