当前位置: 代码迷 >> Android >> android掩藏显示软键盘
  详细解决方案

android掩藏显示软键盘

热度:36   发布时间:2016-05-01 16:28:53.0
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);  
  相关解决方案