前端之家收集整理的这篇文章主要介绍了
如何在没有任何动画(例如淡入淡出)的情况下显示/隐藏软键盘?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法立即
显示或隐藏软
键盘,没有任何动画?在Cyanogenmod 10中,它以褪色动画
显示.
试试这样
InputMethodManager imm = (InputMethodManager)getSystemService(Context.
INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),0);
imm.showSoftInputFromInputMethod(getCurrentFocus().getWindowToken(),0);
原文链接:https://www.f2er.com/android/314324.html