7

有什么方法可以立即显示或隐藏软键盘,而无需任何动画?在 Cyanogenmod 10 中,它会显示褪色动画。

4

1 回答 1

-4

试试这样

InputMethodManager imm = (InputMethodManager)getSystemService(Context.
                                                    INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
    imm.showSoftInputFromInputMethod(getCurrentFocus().getWindowToken(), 0);
于 2012-11-02T08:05:26.157 回答