当用户单击按钮时,我正试图使用以下代码来隐藏软键盘:
InputMethodManager imm = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0);
但我得到了一个错误:
InputMethodManager未定义
我想我需要添加一个导入声明?如果是,有人知道吗?或者我该如何解决这个问题?
InputMethodManager
在包android.view.inputmethod
中,因此需要添加
import android.view.inputmethod.InputMethodManager;
给你的班级。