问题
I have an activity that users type inside and then click the ok button. When it is finished, the activity closes and goes back to the old activity but the soft keyboard is still on the screen! I've tried android:windowSoftInputMode="stateHidden"
and
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
But it does nothing.
回答1:
In OnPause of your activity, you should do the following
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(et.getWindowToken(), 0);
Where et is an instance of your EditText.
来源:https://stackoverflow.com/questions/7339515/how-do-i-remove-the-keyboard-after-i-finish-an-activity