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.

Enter image details here

< 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

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -