读书人

android软键盘的掩藏

发布时间: 2012-09-01 09:33:02 作者: rapoo

android软键盘的隐藏

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

?

if (this.getWindow() != null
&& this.getWindow().getCurrentFocus() != null) {
imm.hideSoftInputFromWindow(this.getWindow().getCurrentFocus()
.getWindowToken(), 0);
}

读书人网 >Android

热点推荐