编程语言
首页 > 编程语言> > 在Android应用程序中未定义InputMethodManager关键字

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

作者:互联网

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

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

但是我收到一个错误:

InputMethodManager not defined

我想我需要添加一个import语句?如果是这样,有谁知道什么?
或者我该如何解决这个问题?

解决方法:

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

import android.view.inputmethod.InputMethodManager;

到你的班级.

标签:android,keyword,inputmethodmanager
来源: https://codeday.me/bug/20190902/1790020.html