我试图从InputMethodService隐藏我的软键盘,它不工作。以下是我在onFinishInput()方法中使用的代码:
InputMethodManager im = (InputMethodManager)
context.getSystemService(Context.INPUT_METHOD_SERVICE);
im.hideSoftInputFromWindow(mInputView.getWindowToken(), 0);
任何想法?
以下方法对我很有效:
requestHideSelf(0);
mInputView.closing();
你可以在清单中隐藏软键盘,试试这个:
android:windowSoftInputMode="stateHidden"