我试图拦截"隐藏键盘按钮" (在许多手机中看到隐藏键盘EditText
)。我到处搜索但找不到正确的密钥代码。我认为它与后退按钮相同(因为它取代了相同的按钮),但它不起作用。
答案 0 :(得分:0)
此代码可隐藏软键盘。
InputMethodManager inputMethodManager =(InputMethodManager)activity.getSystemService(Activity.INPUT_METHOD_SERVICE); inputMethodManager.hideSoftInputFromWindow(getActivity()。getCurrentFocus()。getWindowToken(),0);