[Android 操作系统:活动 UI]
当用户在 AutoCompleteTextView 中选择一个选项时,如何以编程方式关闭 Android 键盘?
我已经尝试过这些东西,但都没有奏效:
InputMethodManager imm = (InputMethodManager) getSystemService (Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow (autoCompleteTextView.getWindowToken(), 0);
imm.toggleSoftInput (InputMethodManager.SHOW_FORCED, 0);