3

当用户单击按钮时,我正在尝试使用以下代码隐藏软键盘:

InputMethodManager imm = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
    imm.toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0);

但我收到一个错误:

InputMethodManager 未定义

我在想我需要添加一个导入语句吗?如果是这样,有人知道吗?或者我该如何解决这个问题?

4

1 回答 1

5

InputMethodManager在包里android.view.inputmethod,所以你需要添加

import android.view.inputmethod.InputMethodManager;

到你的班级。

于 2012-03-29T17:51:11.010 回答