-5

我在 Linearlayout 中有两个 EditText 视图和一个按钮。在edittext中写入完成后,我想隐藏Android虚拟键盘,我该怎么做?

4

1 回答 1

19

您可以像这样使用 InputMethodManager 类:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow( yourEditText.getWindowToken(),InputMethodManager.RESULT_UNCHANGED_SHOWN);
于 2014-03-14T12:00:50.303 回答