读书人

android掩藏显示软键盘

发布时间: 2012-08-26 16:48:06 作者: rapoo

android隐藏显示软键盘

//隐藏软键盘   ((InputMethodManager)getSystemService(INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);  

//显示软键盘,控件ID可以是EditText,TextView   ((InputMethodManager)getSystemService(INPUT_METHOD_SERVICE)).showSoftInput(控件ID, 0);  

读书人网 >Android

热点推荐