控制软键盘的显示与隐藏

来源:互联网 发布:域名批量询价软件 编辑:程序博客网 时间:2024/05/29 13:52

隐藏:

InputMethodManager manager = (InputMethodManager) this.getBaseContext().getSystemService(INPUT_METHOD_SERVICE);manager.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

显示:


InputMethodManager manager = (InputMethodManager) this.getBaseContext().getSystemService(INPUT_METHOD_SERVICE);manager.showSoftInput(“你的EditText”, InputMethodManager.SHOW_IMPLICIT);


原创粉丝点击