Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以立即显示或隐藏软键盘,而无需任何动画?在 Cyanogenmod 10 中,它会显示褪色动画。
试试这样
InputMethodManager imm = (InputMethodManager)getSystemService(Context. INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0); imm.showSoftInputFromInputMethod(getCurrentFocus().getWindowToken(), 0);