android应用程序中未定义InputMethodManager关键字



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

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;

给你的班级。

相关内容

  • 没有找到相关文章

最新更新