android - keycode for "hide keyboard button" -
I'm trying to block "hide keyboard button" (in many phones to hide a keyboard in the edit) I searched everywhere but did not get the right keycode for that I think it is similar to the back button (as the same button changes). But it does not work.
< Div class = "post-text" itemprop = "text">
This code can hide soft keyboard.
InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService (Activity.INPUT_METHOD_SERVICE); InputMethodManager.hideSoftInputFromWindow (getActivity (). GetCurrentFocus (). GetWindowToken (), 0);
Comments
Post a Comment