如何在Java中没有任何动画(例如淡入淡出)显示/隐藏软键盘?
有没有什么方法可以在没有任何动画的情况下立即显示或隐藏软键盘? 在Cyanogenmod 10中,它显示一个衰落的动画。
像这样尝试
InputMethodManager imm = (InputMethodManager)getSystemService(Context.
INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
imm.showSoftInputFromInputMethod(getCurrentFocus().getWindowToken(), 0);
链接地址: http://www.djcxy.com/p/93339.html
上一篇: How to show/hide the soft keyboard without any animation (e.g. fade) in Java?