直播系统平台搭建,控制键盘弹出收缩实现的相关代码
弹出
InputMethodManager inputMethodManager = (InputMethodManager)this.getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);
//其中,showSoftInput方法第一个参数为指定的EditText的控件对象
收缩
InputMethodManager inputMethodManager = (InputMethodManager) this.getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(editText.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
//同上,editText也为你要收起键盘的那个EditText对象控件
以上就是直播系统平台搭建,控制键盘弹出收缩实现的相关代码, 更多内容欢迎关注之后的文章