Created
December 3, 2017 22:26
-
-
Save yccheok/cf4da9f2e0fa1b1d329d3f72d727696b 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
| public static void hideKeyboard(Fragment fragment) { | |
| InputMethodManager imm = (InputMethodManager) fragment.getContext().getSystemService(Activity.INPUT_METHOD_SERVICE); | |
| imm.hideSoftInputFromWindow(fragment.getView().getRootView().getWindowToken(), 0); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment