我试图在单击gridview中的项目后关闭我的自定义键盘。我正在尝试在BaseAdapter类中执行此操作。上下文来自InputMethodService。
到目前为止,我已经尝试了以下内容:
FrameLayout scroll = (FrameLayout)inflater.inflate(R.layout.keyboard, null);
InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(scroll.getWindowToken(), 0);
--
imm.toggleSoftInput(0,InputMethodManager.HIDE_IMPLICIT_ONLY);
--
scroll.setVisibility(View.INVISIBLE);
如果您有自己的自定义键盘,并且扩展了InputMethodService
,那么您可以直接调用
requestHideSelf(0)
从您的服务中强制关闭键盘或
requestHideSelf(InputMethodManager.HIDE_IMPLICIT_ONLY);
只有当用户没有明确要求显示键盘时才关闭键盘。
文档
InputMethodService
#void requestHideSelf (int flags)
我只是在这里复制和粘贴我的应用程序,它对我们来说很好:
public static void hideKeyboard(View v) {
try {
v.clearFocus();
InputMethodManager imm = (InputMethodManager) v.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
} catch (Exception e) {
// we all saw shit happening on this code before
}
}
您可以将此方法放在公共类中,并在需要的地方调用它。
public static void hideKeyboard(Context ctx) {
InputMethodManager inputManager = (InputMethodManager) ctx
.getSystemService(Context.INPUT_METHOD_SERVICE);
// check if no view has focus:
View v = ((Activity) ctx).getCurrentFocus();
if (v == null)
return;
inputManager.hideSoftInputFromWindow(v.getWindowToken(), 0);
}
请参阅我在这里的回答