1、打开(显示软键盘)
//得到InputMethodManager的实例
InputMethodManager inputMethodManager=
(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
打开软键盘(editText首先要获取焦点)
开始我也不会,于是就百度一下网上各种搜索,发现普遍都是如下所示:
//inputMethodManager.showSoftInputFromInputMethod(this.getCurrentFocus().getWindowToken(),
InputMethodManager.SHOW_IMPLICIT);
结果在模拟器和真机调试的时候,百般纳闷,因为根本就不起作用,键盘始终没有打开。至少Android4.2是如此,然后找到Android API,看看有没有别的方法可用,最终确定showSoftInput(View view,Int flags)方法是有效的,意思就是在某视图上打开软键盘输入区域。
inputMethodManager.showSoftInput(et, InputMethodManager.SHOW_IMPLICIT);
2、关闭(隐藏软键盘)
和显示相同,我开始也是同网上大多数说法一样,用的是
//inputMethodManager.hideSoftInputFromInputMethod(this.getCurrentFocus().getWindowToken(),InputMethodManager.HIDE_NOT_ALWAYS);
同样没有效果,经查找API,方便的是,关闭软键盘有容易理解的方法可以使用:
//从当前窗口中隐藏软键盘
inputMethodManager.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
然而 显示软键盘 并没有 showSoftInputFromWindow方法。
3、切换
切换状态,顾名思义 也就是从显示到隐藏,从隐藏到显示软键盘。
if (inputMethodManager.isActive()) {
//切换
inputMethodManager.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, InputMethodManager.HIDE_NOT_ALWAYS);
或
inputMethodManager.toggleSoftInputFromWindow(windowToken, showFlags, hideFlags);
都可以!
还是要多尝试,才有答案!