我是android新手
在使用editText的应用程序中,其最大文本长度为2
在这里我的问题
在editText(即)中输入两个字符后,当editText达到最大文本长度时,它会自动隐藏软键盘
任何人都可以说如何做到这一点,是否可能?
我在堆栈溢出中得到了一些答案
InputMethodManager inputManager =
(InputMethodManager) context.
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(
this.getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
这够了吗?或者我想在编码中做任何额外的事情?
谢谢
解决方法:
在onTextChanged()中使用这个
{
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
}