“隐藏键盘按钮”的键码

时间:2014-10-28 10:19:07

标签: android android-softkeyboard keylistener onkeypress

我试图拦截"隐藏键盘按钮" (在许多手机中看到隐藏键盘EditText)。我到处搜索但找不到正确的密钥代码。我认为它与后退按钮相同(因为它取代了相同的按钮),但它不起作用。

enter image description here

1 个答案:

答案 0 :(得分:0)

此代码可隐藏软键盘。

InputMethodManager inputMethodManager =(InputMethodManager)activity.getSystemService(Activity.INPUT_METHOD_SERVICE);         inputMethodManager.hideSoftInputFromWindow(getActivity()。getCurrentFocus()。getWindowToken(),0);