1

[Android 操作系统:活动 UI]

当用户在 AutoCompleteTextView 中选择一个选项时,如何以编程方式关闭 Android 键盘?

我已经尝试过这些东西,但都没有奏效:

InputMethodManager imm = (InputMethodManager) getSystemService (Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow (autoCompleteTextView.getWindowToken(), 0);
imm.toggleSoftInput (InputMethodManager.SHOW_FORCED, 0);
4

1 回答 1

4

尝试这个

InputMethodManager mgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.hideSoftInputFromWindow(autoCompleteTextView.getWindowToken(), 0);

祝你好运

于 2013-09-02T16:13:52.543 回答