安卓-关闭或打开输入法

当输入法打开时关闭,关闭时弹出:

InputMethodManager m=(InputMethodManager) getSystemService(getBaseContext().INPUT_METHOD_SERVICE);
m.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);

你可能感兴趣的:(安卓-关闭或打开输入法)