其他分享
首页 > 其他分享> > 直播系统平台搭建,控制键盘弹出收缩

直播系统平台搭建,控制键盘弹出收缩

作者:互联网

直播系统平台搭建,控制键盘弹出收缩实现的相关代码

弹出

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对象控件

 

以上就是直播系统平台搭建,控制键盘弹出收缩实现的相关代码, 更多内容欢迎关注之后的文章

 

标签:控件,editText,inputMethodManager,键盘,直播,InputMethodManager,收缩,搭建
来源: https://www.cnblogs.com/yunbaomengnan/p/15503402.html