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 -

asp.net mvc - How to attach sql database to a javascript graph -

c# - How to know the number of Threads created and limit the Tasks accordingly -